@lemon30_npm/csit-vue3 0.0.20 → 0.0.30
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 -3
- package/dist/csit-vue3.js +281 -281
- package/dist/index.css +1 -1
- package/dist/lib/ci-common-list/ci-common-list-layout/index.js +3 -1
- package/dist/lib/ci-common-list/ci-common-list-layout/index.vue.js +2 -2
- package/dist/lib/ci-common-list/ci-common-list-pagination/index.js +3 -1
- package/dist/lib/ci-common-list/ci-common-list-query/index.js +3 -1
- package/dist/lib/ci-common-list/ci-common-list-query/index.vue.js +2 -2
- package/dist/lib/ci-common-list/ci-common-list-start-end-datepicker/index.js +3 -1
- package/dist/lib/ci-dictionary-select/index.js +3 -1
- package/dist/lib/ci-dictionary-select/index.vue.js +2 -2
- package/dist/lib/ci-echarts/ci-echart-ChinaMap/index.js +3 -1
- package/dist/lib/ci-echarts/ci-echart-ChinaMap/index.vue.js +2 -2
- package/dist/lib/ci-echarts/ci-echart-bar/index.js +5 -3
- package/dist/lib/ci-echarts/ci-echart-bar/index.vue.js +2 -2
- package/dist/lib/ci-echarts/ci-echart-pie/index.js +5 -3
- package/dist/lib/ci-echarts/ci-echart-pie/index.vue.js +2 -2
- package/dist/lib/ci-element-plus/ci-el-date-picker-daterange/index.js +3 -1
- package/dist/lib/ci-element-plus/ci-el-date-picker-daterange/index.vue.js +2 -2
- package/dist/lib/ci-no-data-status/index.js +6 -4
- package/dist/lib/ci-page-header/index.js +3 -1
- package/dist/lib/ci-page-header/index.vue.js +2 -2
- package/dist/lib/ci-svg-icon/index.js +6 -5
- package/dist/lib/ci-time-line-list/index.js +6 -4
- package/dist/lib/ci-time-line-list/index.vue.js +2 -2
- package/dist/lib/ci-upload/index.js +5 -4
- package/dist/lib/components/index.js +45 -59
- package/dist/types/src/components/components-project/ci-blue-line-title/index.d.ts +5 -0
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-layout/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-pagination/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-query/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-start-end-datepicker/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-dictionary-select/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-echarts/ci-echart-ChinaMap/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-echarts/ci-echart-bar/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-echarts/ci-echart-pie/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-element-plus/ci-el-date-picker-daterange/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-no-data-status/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-page-header/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-svg-icon/index.d.ts +6 -2
- package/dist/types/src/components/components-project/ci-time-line-list/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-upload/index.d.ts +6 -1
- package/package.json +5 -5
- package/dist/lib/ci-upload/styles/index.css +0 -1
package/README.md
CHANGED
|
@@ -40,8 +40,6 @@ pnpm add csit-vue3
|
|
|
40
40
|
|
|
41
41
|
本节将介绍如何在项目中使用 cist-vue3。
|
|
42
42
|
|
|
43
|
-
## 用法
|
|
44
|
-
|
|
45
43
|
### 完整引入
|
|
46
44
|
|
|
47
45
|
如果你对打包后的文件大小不是很在乎,那么使用完整导入会更方便。
|
|
@@ -266,6 +264,8 @@ import "csit-vue3/dist/index.css";
|
|
|
266
264
|
|
|
267
265
|
至此结束,你应该在某个页面写下:
|
|
268
266
|
|
|
267
|
+
运行后应该不报错且能渲染。至此 验证结束 大功告成✅。
|
|
268
|
+
|
|
269
269
|
```vue
|
|
270
270
|
<template>
|
|
271
271
|
<CiUpload />
|
|
@@ -273,13 +273,13 @@ import "csit-vue3/dist/index.css";
|
|
|
273
273
|
</template>
|
|
274
274
|
```
|
|
275
275
|
|
|
276
|
+
>
|
|
276
277
|
> ❗注意:
|
|
277
278
|
>
|
|
278
279
|
> 不要在当前vue页面手动 import,不要在当前vue页面手动注册。
|
|
279
280
|
>
|
|
280
281
|
> 不要在main.ts中全量注册组件,按需注册组件。
|
|
281
282
|
>
|
|
282
|
-
> 运行后应该不报错且能渲染。至此 验证结束 大功告成✅。
|
|
283
283
|
|
|
284
284
|
**当然,我们会把解析器内置到 `csit-vue3`中,开发者无需关心解析器实现,因为解析器实现要遵循一定的组件库设计规则,开发者只需从 `csit-vue3`中导出使用即可。**
|
|
285
285
|
|