@zyzgroup/core-vue 0.0.5 → 0.0.6
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 +6 -7
- 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 +7 -5
- package/types/components/Icon.ce.vue.d.ts +36 -0
package/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
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
|
-
|
|
6
|
-
|
|
7
|
-
- [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
|
|
8
|
-
|
|
9
|
-
- Use [vue-tsc](https://github.com/vuejs/language-tools/tree/master/packages/tsc) for performing the same type checking from the command line, or for generating d.ts files for SFCs.
|
|
8
|
+
```
|