vue3 组件

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


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