vue组件 二级菜单


html部分:

<div id="app">

<all-component :is="currentpage"></all-component>

<div>

<button type="button" @click="currentpage='home'">home</button>

<button type="button" @click="currentpage='foo'">foo</button>

<button type="button" @click="currentpage='bar'">bar</button>

</div>

</div>

js部分:

var vm=new Vue({

el:"#app",

data:{currentpage:'home'},

components:{

home:{template:'<div>this is home</div>'},

foo:{template:'<div>this is foo</div>'},

bar:{template:'<div>this is bar</div>'}

}

})


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM