Vue父子组件
Others 2017-06-20 08:08:22 2017-06-20 08:08:22 2714 次浏览父子组件:
<div id="box"> <aaa></aaa> </div><template id="aaa"> <h1>我是父组件</h1> <bbb></bbb> </template>
<template id="bbb"> <h2>我是子组件</h2> </template>
</body> <script> new Vue({ el:"#box", components:{ aaa:{ template:"#aaa", components:{ bbb:{ template:"#bbb" } }
} } })
Links: 3