w-ui-v1 1.0.46 → 1.0.48
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 +5 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -14,7 +14,9 @@ import WSelectTable from './w-select-table/w-select-table.vue'
|
|
|
14
14
|
import WFormMessageBox from './w-form-message-box/w-form-message-box.vue'
|
|
15
15
|
import WAudio from './w-audio/w-audio.vue'
|
|
16
16
|
import WReportTable from './w-report-table/w-report-table.vue'
|
|
17
|
+
import WFormControlVue from './w-form-control/w-form-control.vue'
|
|
17
18
|
import {menu} from './utils/apis/menu'
|
|
19
|
+
import request from './utils/http'
|
|
18
20
|
const coms: any[] = [
|
|
19
21
|
wTest,
|
|
20
22
|
wLogin,
|
|
@@ -30,7 +32,8 @@ const coms: any[] = [
|
|
|
30
32
|
WSelectTable,
|
|
31
33
|
WFormMessageBox,
|
|
32
34
|
WAudio,
|
|
33
|
-
WReportTable
|
|
35
|
+
WReportTable,
|
|
36
|
+
WFormControlVue
|
|
34
37
|
]
|
|
35
38
|
// 批量组件注册
|
|
36
39
|
function install(Vue: App) {
|
|
@@ -39,6 +42,7 @@ function install(Vue: App) {
|
|
|
39
42
|
})
|
|
40
43
|
}
|
|
41
44
|
export const api={
|
|
45
|
+
request,
|
|
42
46
|
menu
|
|
43
47
|
}
|
|
44
48
|
export default install // 这个方法以后再使用的时候可以被vue.use调用
|