wui-components-v2 1.0.3 → 1.0.5
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.ts +3 -7
- package/package.json +1 -1
- package/test.vue +0 -11
package/index.ts
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import type { App } from 'vue'
|
|
2
2
|
import SystemSettings from './components/system-settings.vue'
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import test from './test.vue'
|
|
3
|
+
import { useLocale } from './composables/useLocale'
|
|
4
|
+
import { useManualTheme } from './composables/useManualTheme'
|
|
5
|
+
import request from './api'
|
|
8
6
|
|
|
9
7
|
const coms: any[] = [
|
|
10
8
|
SystemSettings,
|
|
11
|
-
test,
|
|
12
9
|
]
|
|
13
10
|
// 批量组件注册
|
|
14
11
|
function install(Vue: App) {
|
|
@@ -21,7 +18,6 @@ export const coreFunctions = {
|
|
|
21
18
|
// useLocale,
|
|
22
19
|
// useManualTheme,
|
|
23
20
|
// request,
|
|
24
|
-
fff: () => { console.log('sssssss') },
|
|
25
21
|
}
|
|
26
22
|
|
|
27
23
|
export default install // 这个方法以后再使用的时候可以被vue.use调用
|
package/package.json
CHANGED