组件引入

This commit is contained in:
xiaozzzi 2023-11-03 16:39:34 +08:00
parent 457e363bff
commit 720c807003

View File

@ -12,12 +12,11 @@ import '@/assets/styles/iconfont/weblogo/iconfont.js'
import BLRow from '@/components/BLRow.vue'
import BLCol from '@/components/BLCol.vue'
import BLTag from '@/components/BLTag.vue'
const app = createApp(App);
const app = createApp(App)
app.use(pinia)
app.use(router)
app
.component('bl-row', BLRow)
.component('bl-col', BLCol)
app.mount('#app');
app.component('bl-row', BLRow).component('bl-col', BLCol).component('bl-tag', BLTag)
app.mount('#app')