tianheng-ui 0.0.14 → 0.0.15
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/lib/index.js +4 -8
- package/lib/tianheng-ui.js +1 -1
- package/lib/tianheng-ui.js.map +1 -1
- package/package.json +1 -1
- package/packages/table/index.js +2 -18
- package/packages/table/index.vue +1 -0
package/package.json
CHANGED
package/packages/table/index.js
CHANGED
@@ -1,24 +1,8 @@
|
|
1
1
|
import Table from "./index.vue";
|
2
|
+
|
2
3
|
/* istanbul ignore next */
|
3
4
|
Table.install = function(Vue) {
|
4
5
|
Vue.component(Table.name, Table);
|
5
6
|
};
|
6
7
|
|
7
|
-
|
8
|
-
/* istanbul ignore next */
|
9
|
-
TableAction.install = function(Vue) {
|
10
|
-
Vue.component(TableAction.name, TableAction);
|
11
|
-
};
|
12
|
-
|
13
|
-
import TableTools from "./tools.vue";
|
14
|
-
/* istanbul ignore next */
|
15
|
-
TableTools.install = function(Vue) {
|
16
|
-
Vue.component(TableTools.name, TableTools);
|
17
|
-
};
|
18
|
-
|
19
|
-
import TableSearch from "./search.vue";
|
20
|
-
/* istanbul ignore next */
|
21
|
-
TableSearch.install = function(Vue) {
|
22
|
-
Vue.component(TableSearch.name, TableSearch);
|
23
|
-
};
|
24
|
-
export default { Table, TableAction, TableTools, TableSearch };
|
8
|
+
export default Table;
|