本節(jié)知識(shí)點(diǎn)
- 組件標(biāo)簽
- 模板標(biāo)簽用的``
概述
<component></component>標(biāo)簽是vue自定義的標(biāo)簽奖磁∧砻悖可以動(dòng)態(tài)綁定我們的組件豁辉,根據(jù)數(shù)據(jù)不同更換不同的組件
componet標(biāo)簽
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0">
<title>Title</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<component :is="who"></component>
<button @click="change">點(diǎn)擊我變換</button>
</div>
</body>
<script>
var jsona = {
template:`<p>啟用第一個(gè)模板</p>`
}
var jsonb = {
template:`<p>啟用第二個(gè)模板</p>`
}
var jsonc = {
template:`<p>啟用第三個(gè)模板</p>`
}
var app = new Vue({
el:"#app",
data:{
who:"jsona"
},
components:{
jsona :jsona,
jsonb:jsonb,
jsonc:jsonc
},
methods:{
change:function(){
if(this.who=="jsona")
{
this.who="jsonb";
}else if(this.who=="jsonb")
{
this.who = "jsonc";
}else if(this.who=="jsonc")
{
this.who = "jsona";
}
}
}
})
</script>
</html>