|
@@ -10,6 +10,7 @@ import BsModalTableSelector from './ModalTableSelector/index.vue';
|
|
|
import BsDescriptions from "./Descriptions/index.vue"
|
|
import BsDescriptions from "./Descriptions/index.vue"
|
|
|
import BsContentsWrapper from "./ContentsWrapper/index.vue"
|
|
import BsContentsWrapper from "./ContentsWrapper/index.vue"
|
|
|
import BsTabs from "./Tabs/index.vue"
|
|
import BsTabs from "./Tabs/index.vue"
|
|
|
|
|
+import BsEllipsisText from "./EllipsisText/index.vue"
|
|
|
|
|
|
|
|
const BsUi = {
|
|
const BsUi = {
|
|
|
install(app) {
|
|
install(app) {
|
|
@@ -22,7 +23,8 @@ const BsUi = {
|
|
|
app.component('BsModalTableSelector', BsModalTableSelector);
|
|
app.component('BsModalTableSelector', BsModalTableSelector);
|
|
|
app.component('BsDescriptions', BsDescriptions)
|
|
app.component('BsDescriptions', BsDescriptions)
|
|
|
app.component('BsContentsWrapper', BsContentsWrapper)
|
|
app.component('BsContentsWrapper', BsContentsWrapper)
|
|
|
- app.component('BsTabs', BsTabs)
|
|
|
|
|
|
|
+ app.component('BsTabs', BsTabs);
|
|
|
|
|
+ app.component('BsEllipsisText', BsEllipsisText);
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|
|
|
|
|
|
|
@@ -44,5 +46,6 @@ export {
|
|
|
useBsForm,
|
|
useBsForm,
|
|
|
BsDescriptions,
|
|
BsDescriptions,
|
|
|
BsContentsWrapper,
|
|
BsContentsWrapper,
|
|
|
- BsTabs
|
|
|
|
|
|
|
+ BsTabs,
|
|
|
|
|
+ BsEllipsisText
|
|
|
};
|
|
};
|