vue-amazing-ui 2.1.6 → 2.1.7
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 +2 -2
- package/dist/index.iife.js +23 -23
- package/dist/index.js +110 -110
- package/dist/index.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/es/badge/Badge.css +1 -1
- package/es/badge/Badge.vue.js +2 -2
- package/es/badge/Badge.vue2.js +30 -30
- package/es/select/Select.css +1 -1
- package/es/select/Select.vue.js +2 -2
- package/es/select/Select.vue2.js +36 -36
- package/lib/badge/Badge.css +1 -1
- package/lib/badge/Badge.vue.cjs +1 -1
- package/lib/badge/Badge.vue2.cjs +1 -1
- package/lib/select/Select.css +1 -1
- package/lib/select/Select.vue.cjs +1 -1
- package/lib/select/Select.vue2.cjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ app.mount('#app')
|
|
|
54
54
|
|
|
55
55
|
**Global Partial Registration**
|
|
56
56
|
|
|
57
|
-
*In this form, only
|
|
57
|
+
*In this form, only the imported components will be bundled.*
|
|
58
58
|
|
|
59
59
|
```ts
|
|
60
60
|
import { createApp } from 'vue'
|
|
@@ -70,7 +70,7 @@ app.mount('#app')
|
|
|
70
70
|
|
|
71
71
|
**Local Registration**
|
|
72
72
|
|
|
73
|
-
*In this form, only
|
|
73
|
+
*In this form, only the imported components will be bundled as well.*
|
|
74
74
|
|
|
75
75
|
```vue
|
|
76
76
|
<script setup lang="ts">
|