vue3 组件

 

 

app.component('website',{
    template:` <h2>JSPang.com</h2>`
})
app.component('describe',{
    template:` <h2>技术胖的博客</h2>`
})

const app=Vue.createApp({
    template:`
        <website />
        <describe />
    `
})

 

posted @ 2021-05-05 22:38  熊大大001(前端开发)  阅读(69)  评论(0)    收藏  举报