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>'}

}

})

posted @ 2017-03-03 09:43  sungang  阅读(3440)  评论(2编辑  收藏  举报