【vue3】注册全局组件

【vue3】注册全局组件_第1张图片

//main.ts

import CardVue from './components/Card.vue'

const app = createApp(App)
app.component('Card',CardVue)

你可能感兴趣的:(vue3,vue.js)