mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
20 lines
385 B
JavaScript
20 lines
385 B
JavaScript
// 组件
|
|
import uiJessibuca from '@/components/ui-jessibuca/index.vue'
|
|
import uiScrollbar from '@/components/ui-scrollbar/index.vue'
|
|
|
|
const components = {
|
|
// 组件
|
|
uiJessibuca,
|
|
uiScrollbar
|
|
}
|
|
|
|
const install = function (Vue, opts = {}) {
|
|
Object.keys(components).forEach((name) => {
|
|
Vue.component(name, components[name])
|
|
})
|
|
}
|
|
|
|
export default {
|
|
install
|
|
}
|