@xuekl/cli-components 1.0.1 → 1.0.2
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 +27 -12
- package/package.json +2 -2
package/index.ts
CHANGED
|
@@ -1,14 +1,29 @@
|
|
|
1
|
-
import
|
|
1
|
+
import ContextMenu from './ContextMenu.vue'
|
|
2
|
+
import PaddingBox from './PaddingBox.vue'
|
|
3
|
+
import PageContainer from './PageContainer.vue'
|
|
4
|
+
import XklButton from './XklButton.vue'
|
|
5
|
+
import XklDatePicker from './XklDatePicker.vue'
|
|
6
|
+
import XklDict from './XklDict.vue'
|
|
7
|
+
import XklForm from './XklForm.vue'
|
|
8
|
+
import XklLink from './XklLink.vue'
|
|
9
|
+
import XklSelect from './XklSelect.vue'
|
|
10
|
+
import XklTable from './XklTable.vue'
|
|
11
|
+
import XklTree from './XklTree.vue'
|
|
12
|
+
import XklTreeSelect from './XklTreeSelect.vue'
|
|
13
|
+
import XklUpload from './XklUpload.vue'
|
|
2
14
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
export {
|
|
16
|
+
ContextMenu,
|
|
17
|
+
PaddingBox,
|
|
18
|
+
PageContainer,
|
|
19
|
+
XklButton,
|
|
20
|
+
XklDatePicker,
|
|
21
|
+
XklDict,
|
|
22
|
+
XklForm,
|
|
23
|
+
XklLink,
|
|
24
|
+
XklSelect,
|
|
25
|
+
XklTable,
|
|
26
|
+
XklTree,
|
|
27
|
+
XklTreeSelect,
|
|
28
|
+
XklUpload,
|
|
14
29
|
}
|