1234567891011
var vm = new Vue({ el:'#app', // 用來掛載 Vue 實體元素 data:{}, // 綁定資料 props:{}, // 接收子元件外部資料 methods:{}, // 定義方法 = function a(el){} watch:{}, // 監聽 vue 資料變動 computed:{}, // 計算屬性 template:"...", // 模板 components:{} // 定義子元件 container:{} // 用 components 接資料,可測試 ui 畫面})
See the Pen v-LifeCycle 生命週期 by RichardLiao 🇹🇼 (@bnmghjtyu) on CodePen.