tips:
代码实例如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue3组件的其他写入方式</title>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<div id="michael">
<michael></michael><!--组件的最传统的输出方式,以标签的方式输出-->
<component :is="'michael'"></component> <!--组件的动态输出方式-->
<aaa v-is="'michael'"></aaa> <!--组件的其他输出方式-->
</div>
<script>
var app = Vue.createApp({
data(){
return {
"msg":"Hello,Vue3"
}
}
});
app.component("michael",{
"template":`
<div>michael</div>
`
});
app.mount("#michael");
</script>
<div id="michael"></div>
</body>
</html>
[小结]
这种方式有点类似动态组件component的方式,即加上v-is属性,都能实现组件内容的输出.
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。