Vue.component('app-child', { template: ` <div v-if="isShow"> <h1>我是子元件</h1> </div>`, data() { return { isShow: true, }; }, });. 由於父元件 ...
確定! 回上一頁