@bdsoft/element 1.1.11 → 1.1.12
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/index.js +11 -11
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5,10 +5,10 @@ import * as ElementPlus from 'element-plus'
|
|
|
5
5
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
|
6
6
|
window.ElementPlus = ElementPlus
|
|
7
7
|
|
|
8
|
-
import '
|
|
8
|
+
import '@/assets/css/element.scss'
|
|
9
9
|
import 'splitpanes/dist/splitpanes.css'
|
|
10
|
-
import '
|
|
11
|
-
import '
|
|
10
|
+
import '@/assets/css/layout.scss'
|
|
11
|
+
import '@/assets/css/tailwind.scss'
|
|
12
12
|
|
|
13
13
|
// 添加分隔组件
|
|
14
14
|
import { Splitpanes, Pane } from 'splitpanes'
|
|
@@ -16,9 +16,9 @@ import { Splitpanes, Pane } from 'splitpanes'
|
|
|
16
16
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
17
17
|
window.ElementPlusIconVue = ElementPlusIconsVue
|
|
18
18
|
|
|
19
|
-
import LoadComponent from '
|
|
19
|
+
import LoadComponent from 'utils/coms/load.jsx'
|
|
20
20
|
// 自定义的所有组件
|
|
21
|
-
import * as components from '
|
|
21
|
+
import * as components from '@/index.js'
|
|
22
22
|
|
|
23
23
|
// 定义 useElement 为 Vue 插件
|
|
24
24
|
const useElement = {
|
|
@@ -76,11 +76,11 @@ const useElement = {
|
|
|
76
76
|
export default useElement
|
|
77
77
|
export { useElement }
|
|
78
78
|
// 功能 showwarning, showsuccess, showerror, showconfirm
|
|
79
|
-
export * from '
|
|
80
|
-
export * from '
|
|
81
|
-
export * from '
|
|
82
|
-
export * from '
|
|
83
|
-
export * from '
|
|
79
|
+
export * from 'utils/message.js'
|
|
80
|
+
export * from 'utils/index.js'
|
|
81
|
+
export * from 'global/index'
|
|
82
|
+
export * from 'utils/hookDialog.js'
|
|
83
|
+
export * from 'utils/hookPage.js' // 分页hook函数
|
|
84
84
|
// export { dayjs }
|
|
85
85
|
// 导出所有组件
|
|
86
|
-
export * from '
|
|
86
|
+
export * from '@/index.js'
|