wui-components-v2 1.0.22 → 1.0.24
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineStore } from 'pinia'
|
|
2
2
|
import type { MessageOptions, MessageResult } from 'wot-design-uni/components/wd-message-box/types'
|
|
3
|
-
|
|
3
|
+
import { CommonUtil } from 'wot-design-uni'
|
|
4
4
|
import { getCurrentPath } from '../utils/index'
|
|
5
5
|
|
|
6
6
|
export type GlobalMessageOptions = MessageOptions & {
|
package/index.ts
CHANGED
|
@@ -14,6 +14,7 @@ import { useUser } from './composables/useUser'
|
|
|
14
14
|
import { req } from './api/index'
|
|
15
15
|
import { useTabbar } from './composables/useTabbar'
|
|
16
16
|
import { persistPlugin } from './store/persist'
|
|
17
|
+
import DemoBlock from './components/demo-block/demo-block.vue'
|
|
17
18
|
// 组件列表
|
|
18
19
|
const coms: Array<{ name: string }> = [
|
|
19
20
|
SystemSettings,
|
|
@@ -22,6 +23,7 @@ const coms: Array<{ name: string }> = [
|
|
|
22
23
|
loginForm,
|
|
23
24
|
LayoutsDefault,
|
|
24
25
|
Tabbar,
|
|
26
|
+
DemoBlock,
|
|
25
27
|
]
|
|
26
28
|
|
|
27
29
|
/**
|
package/package.json
CHANGED