@zyzgroup/core-vue 0.0.5 → 0.0.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 +10 -5
- package/ce/yz_custom_element.iife.js +87 -0
- package/ce/yz_custom_element.iife.js.map +1 -0
- package/ce/yz_custom_element.js +40526 -0
- package/ce/yz_custom_element.js.map +1 -0
- package/ce/yz_custom_element.umd.cjs +87 -0
- package/ce/yz_custom_element.umd.cjs.map +1 -0
- package/dist/Icon.ce.vue +57 -0
- package/package.json +9 -2
- package/types/components/Icon.ce.vue.d.ts +36 -0
package/README.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
```
|
|
2
|
+
// 引入的包大
|
|
3
|
+
import { Icon } from '@zyzgroup/core-vue'
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
// 组件中使用的库需要另外安装
|
|
6
|
+
import Icon from '@zyzgroup/core-vue/Icon.vue'
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
`npm run ce`
|
|
9
|
+
/src/webcomponent.js
|
|
10
|
+
/apps/webcomponent.html
|
|
11
|
+
https://cdn.jsdelivr.net/npm/@zyzgroup/core-vue@latest/ce/yz_custom_element.iife.js
|
|
6
12
|
|
|
7
|
-
- [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
|
|
8
13
|
|
|
9
|
-
|
|
14
|
+
```
|