7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
|
import T from './DictSelectTag.vue'
|
||
|
const DictSelectTag = {
|
||
|
install: function (Vue) {
|
||
|
Vue.component('DictSelectTag',T);
|
||
|
}
|
||
|
}
|
||
|
export default DictSelectTag;
|