@rocketui/vue 0.0.13 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  ## Installation
5
5
 
6
6
  ```sh
7
- yarn add @rocket-ui/vue
7
+ yarn add @rocketui/vue
8
8
  ```
9
9
 
10
10
  ## Usage
@@ -16,7 +16,7 @@ import { createApp } from 'vue'
16
16
  import App from './App.vue'
17
17
 
18
18
  // Import the Styles
19
- import '@rocket-ui/vue/dist/style.css'
19
+ import '@rocketui/vue/dist/style.css'
20
20
 
21
21
  createApp(App).mount('#app')
22
22
  ```
@@ -25,7 +25,7 @@ Then you can use the components in your `App.vue` file:
25
25
 
26
26
  ```vue
27
27
  <script setup>
28
- import { Button } from '@rocket-ui/vue'
28
+ import { Button } from '@rocketui/vue'
29
29
  </script>
30
30
 
31
31
  <template>