feat: 修改xtSelect名称

This commit is contained in:
caoqianming 2024-11-01 09:26:50 +08:00
parent 27fd49a690
commit f0aab1b9af
3 changed files with 2 additions and 2 deletions

View File

@ -2,13 +2,13 @@ import ehsUserSelect from './components/ehsSelect/userselect'
import ehsEpSelect from './components/ehsSelect/epselect'
import ehsSelect from './components/ehsSelect/select'
import ehsTableSelect from './components/ehsSelect/tableSelect'
import xSelect from './components/xSelect/index.vue'
import xtSelect from './components/xtSelect/index.vue'
export default {
install(app) {
app.component('ehsUserSelect', ehsUserSelect);
app.component('ehsEpSelect', ehsEpSelect);
app.component('ehsSelect', ehsSelect);
app.component('ehsTableSelect', ehsTableSelect);
app.component('xSelect', xSelect);
app.component('xtSelect', xtSelect);
}
}