|
@@ -7,17 +7,18 @@ import BsTable, { useBsTable } from './Table/index.js';
|
|
|
import BsDrawer, { useBsDrawer } from './Drawer/index.js';
|
|
import BsDrawer, { useBsDrawer } from './Drawer/index.js';
|
|
|
import BsForm, { useBsForm } from './Form/index.js';
|
|
import BsForm, { useBsForm } from './Form/index.js';
|
|
|
import BsModalTableSelector from './ModalTableSelector/index.vue';
|
|
import BsModalTableSelector from './ModalTableSelector/index.vue';
|
|
|
-import BsDescriptions from "./Descriptions/index.vue"
|
|
|
|
|
-import BsContentsWrapper from "./ContentsWrapper/index.vue"
|
|
|
|
|
-import BsTabs from "./Tabs/index.vue"
|
|
|
|
|
-import BsEllipsisText from "./EllipsisText/index.vue"
|
|
|
|
|
-import BsDicTag from "./DicTag/index.vue"
|
|
|
|
|
-import BsLink from "./Link/index.vue"
|
|
|
|
|
-import BsCatalog from "./Catalog/index.vue"
|
|
|
|
|
-import BsSvgIcon from "./SvgIcon/index.vue"
|
|
|
|
|
-import BsTabBar from "/@/components/BsUi/TabBar/index.vue"
|
|
|
|
|
-import BsPageWrapper from "./PageWrapper/index.vue"
|
|
|
|
|
-import BsTableSelector from './TableSelector/index.vue'
|
|
|
|
|
|
|
+import BsDescriptions from './Descriptions/index.vue';
|
|
|
|
|
+import BsContentsWrapper from './ContentsWrapper/index.vue';
|
|
|
|
|
+import BsTabs from './Tabs/index.vue';
|
|
|
|
|
+import BsEllipsisText from './EllipsisText/index.vue';
|
|
|
|
|
+import BsDicTag from './DicTag/index.vue';
|
|
|
|
|
+import BsLink from './Link/index.vue';
|
|
|
|
|
+import BsCatalog from './Catalog/index.vue';
|
|
|
|
|
+import BsSvgIcon from './SvgIcon/index.vue';
|
|
|
|
|
+import BsTabBar from '/@/components/BsUi/TabBar/index.vue';
|
|
|
|
|
+import BsPageWrapper from './PageWrapper/index.vue';
|
|
|
|
|
+import BsTableSelector from './TableSelector/index.vue';
|
|
|
|
|
+import BsFileUploadSubTable from './FileUploadSubTable/index.vue';
|
|
|
|
|
|
|
|
const BsUi = {
|
|
const BsUi = {
|
|
|
install(app) {
|
|
install(app) {
|
|
@@ -28,8 +29,8 @@ const BsUi = {
|
|
|
app.component('BsTable', BsTable);
|
|
app.component('BsTable', BsTable);
|
|
|
app.component('BsDrawer', BsDrawer);
|
|
app.component('BsDrawer', BsDrawer);
|
|
|
app.component('BsModalTableSelector', BsModalTableSelector);
|
|
app.component('BsModalTableSelector', BsModalTableSelector);
|
|
|
- app.component('BsDescriptions', BsDescriptions)
|
|
|
|
|
- app.component('BsContentsWrapper', BsContentsWrapper)
|
|
|
|
|
|
|
+ app.component('BsDescriptions', BsDescriptions);
|
|
|
|
|
+ app.component('BsContentsWrapper', BsContentsWrapper);
|
|
|
app.component('BsTabs', BsTabs);
|
|
app.component('BsTabs', BsTabs);
|
|
|
app.component('BsEllipsisText', BsEllipsisText);
|
|
app.component('BsEllipsisText', BsEllipsisText);
|
|
|
app.component('BsDicTag', BsDicTag);
|
|
app.component('BsDicTag', BsDicTag);
|
|
@@ -39,6 +40,7 @@ const BsUi = {
|
|
|
app.component('BsTabBar', BsTabBar);
|
|
app.component('BsTabBar', BsTabBar);
|
|
|
app.component('BsPageWrapper', BsPageWrapper);
|
|
app.component('BsPageWrapper', BsPageWrapper);
|
|
|
app.component('BsTableSelector', BsTableSelector);
|
|
app.component('BsTableSelector', BsTableSelector);
|
|
|
|
|
+ app.component('BsFileUploadSubTable', BsFileUploadSubTable);
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -68,5 +70,6 @@ export {
|
|
|
BsSvgIcon,
|
|
BsSvgIcon,
|
|
|
BsTabBar,
|
|
BsTabBar,
|
|
|
BsPageWrapper,
|
|
BsPageWrapper,
|
|
|
- BsTableSelector
|
|
|
|
|
|
|
+ BsTableSelector,
|
|
|
|
|
+ BsFileUploadSubTable,
|
|
|
};
|
|
};
|