mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-18 23:49:33 +08:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
import { App } from 'vue'
|
|
import Title from '../components/Title.vue'
|
|
import ImgSlider from '../components/ImgSlider.vue'
|
|
|
|
/**
|
|
* 批量完成自定义组件的注册
|
|
*/
|
|
export function customComponents(app: App) {
|
|
const cpns = [Title, ImgSlider]
|
|
|
|
for (const c of cpns) {
|
|
app.component(c.__name!, c)
|
|
}
|
|
}
|