doway-coms 2.10.38 → 2.10.39
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/package.json +1 -1
- package/packages/index.js +3 -0
package/package.json
CHANGED
package/packages/index.js
CHANGED
|
@@ -26,6 +26,7 @@ import BaseButton from './BaseButton/index'
|
|
|
26
26
|
import BaseTreeSelect from './BaseTreeSelect/index'
|
|
27
27
|
import LeaveAMessage from './LeaveAMessage/index'
|
|
28
28
|
import AuditsList from './AuditsList/index'
|
|
29
|
+
import HistoryModal from './HistoryModal/index'
|
|
29
30
|
|
|
30
31
|
import store from './utils/store'
|
|
31
32
|
import request from './utils/request'
|
|
@@ -60,6 +61,7 @@ const components = [
|
|
|
60
61
|
AuditsList,
|
|
61
62
|
BaseTreeSelect,
|
|
62
63
|
BaseFileGroup,
|
|
64
|
+
HistoryModal,
|
|
63
65
|
]
|
|
64
66
|
// 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
65
67
|
|
|
@@ -191,4 +193,5 @@ export {
|
|
|
191
193
|
store,
|
|
192
194
|
request,
|
|
193
195
|
BaseFileGroup,
|
|
196
|
+
HistoryModal,
|
|
194
197
|
}
|