is属性
有组件 myCom1 和 myCom
<div id="app">
<input type="button" @click="changeIt">
<component :is="name"></component>
</div>
changeIt() {
this.name= this.name == 'myCom' ? 'myCom1' : 'myCom';
}
is属性
有组件 myCom1 和 myCom
<div id="app">
<input type="button" @click="changeIt">
<component :is="name"></component>
</div>
changeIt() {
this.name= this.name == 'myCom' ? 'myCom1' : 'myCom';
}