@xjw_/vue2-npm-system 1.0.2 → 1.0.4
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 +3 -1
- package/dist/@xjw_/vue2-npm-system.js +1 -1
- package/dist/@xjw_/vue2-npm-system.js.map +1 -1
- package/es/assets/svg/filter.svg +43 -0
- package/es/assets/svg/search.svg +1 -0
- package/es/components/SvgIcon.vue +62 -0
- package/es/components/XSearchBar.vue +171 -0
- package/es/index.js +18 -16
- package/es/plugins/svg-icon.js +60 -0
- package/es/utils/validate.js +8 -0
- package/lib/assets/svg/filter.svg +43 -0
- package/lib/assets/svg/search.svg +1 -0
- package/lib/components/SvgIcon.vue +62 -0
- package/lib/components/XSearchBar.vue +171 -0
- package/lib/index.js +19 -41
- package/lib/plugins/svg-icon.js +62 -0
- package/lib/utils/validate.js +14 -0
- package/package.json +6 -4
- package/es/components/JcButton.vue +0 -76
- package/es/components/JcDialog.vue +0 -199
- package/es/components/JcInput.vue +0 -136
- package/es/components/JcSelect.vue +0 -124
- package/es/components/JcTable.vue +0 -286
- package/lib/components/JcButton.vue +0 -76
- package/lib/components/JcDialog.vue +0 -199
- package/lib/components/JcInput.vue +0 -136
- package/lib/components/JcSelect.vue +0 -124
- package/lib/components/JcTable.vue +0 -286
package/README.md
CHANGED
|
@@ -22,7 +22,9 @@ npm install @xjw_/vue2-npm-system
|
|
|
22
22
|
import Vue from 'vue'
|
|
23
23
|
import ElementUI from 'element-ui'
|
|
24
24
|
import JcComponents from '@xjw_/vue2-npm-system'
|
|
25
|
-
|
|
25
|
+
|
|
26
|
+
// 注意:需要自行导入 Element-UI 样式
|
|
27
|
+
import 'element-ui/lib/theme-chalk/index.css'
|
|
26
28
|
|
|
27
29
|
Vue.use(ElementUI)
|
|
28
30
|
Vue.use(JcComponents)
|