luyoumin-ui 0.0.49 → 0.0.50
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/dist/global.d.ts +19 -0
- package/dist/luyoumin-ui.es.js +78944 -12
- package/dist/luyoumin-ui.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/charts-data-CaO9wreO.js +0 -49278
- package/dist/index-DZ8rt--P.js +0 -78977
package/dist/global.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export {}
|
|
2
|
+
|
|
3
|
+
import { GenericImg, LymButton, LymCheckBox, LymCheckBoxGroup, LymColorPicker, LymDialog, LymDrawer, LymInput, LymLink, LymEcharts } from './index'
|
|
4
|
+
|
|
5
|
+
// 自动注册全局组件虽然很方便,但在使用时缺少了ts类型提示,下面介绍一下为全局组件添加类型提示
|
|
6
|
+
declare module 'vue' {
|
|
7
|
+
export interface GlobalComponents {
|
|
8
|
+
GenericImg: typeof GenericImg
|
|
9
|
+
LymButton: typeof LymButton
|
|
10
|
+
LymCheckBox: typeof LymCheckBox
|
|
11
|
+
LymCheckBoxGroup: typeof LymCheckBoxGroup
|
|
12
|
+
LymColorPicker: typeof LymColorPicker
|
|
13
|
+
LymDialog: typeof LymDialog
|
|
14
|
+
LymDrawer: typeof LymDrawer
|
|
15
|
+
LymInput: typeof LymInput
|
|
16
|
+
LymLink: typeof LymLink
|
|
17
|
+
LymEcharts: typeof LymEcharts
|
|
18
|
+
}
|
|
19
|
+
}
|