@chewel611/naive-ui-plus 0.0.7 → 0.0.9

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
@@ -7,11 +7,11 @@
7
7
  ## Install & Use
8
8
 
9
9
  ```bash
10
- pnpm i @chewel/naive-plus-ui
10
+ pnpm i @chewel611/naive-plus-ui
11
11
  # or
12
- npm install @chewel/naive-plus-ui
12
+ npm install @chewel611/naive-plus-ui
13
13
  # or
14
- yarn add @chewel/naive-plus-ui
14
+ yarn add @chewel611/naive-plus-ui
15
15
  ```
16
16
 
17
17
  Import and register component
@@ -22,7 +22,7 @@ Import and register component
22
22
  import { createApp } from 'vue'
23
23
  import App from './App.vue'
24
24
 
25
- import NaivePlusUI from '@chewel/naive-plus-ui'
25
+ import NaivePlusUI from '@chewel611/naive-plus-ui'
26
26
 
27
27
  const app = createApp(App)
28
28
  app.use(NaivePlusUI)
@@ -32,7 +32,7 @@ app.use(NaivePlusUI)
32
32
 
33
33
  ```vue
34
34
  <script setup lang="ts">
35
- import { PlusTable } from '@chewel/naive-plus-ui'
35
+ import { PlusTable } from '@chewel611/naive-plus-ui'
36
36
  </script>
37
37
  ```
38
38