UNPKG

cc-ui-vue3

Version:

This template should help get you started developing with Vue 3 in Vite.

9 lines (7 loc) 270 B
import type { App } from 'vue' import CcSystemSwitch from './CcSystemSwitch.vue' // 使用install方法,在app.use挂载 CcSystemSwitch.install = (app: App) => { app.component(CcSystemSwitch.__name as string, CcSystemSwitch) } export default CcSystemSwitch