vue3 全局组件注册

一,创建组件

        





二,注册组件

        

import hello from './components/hello.vue'
const app = createApp(App)
    app.component("hello",hello)
app.mount('#app')

三,显示组件

        

 


你可能感兴趣的:(前端,javascript,vue.js)