預計在鐵人30天 把自己學習Vue上 所學習到一些Component以及狀態管理 或是相關套件的概念
或使用心得 做一個系列性的分享及介紹
1.什麼是Vue.js 官方的定義現在網頁前端開發的時候,都希望做到可以把前端互動效果做到模組化。模組化的目的是希望在需求修改的時候,不需要對前端架構修改太多。...
Vue Instance ref doc 每個Vue.js 所撰寫出的Web application最基本都會有一個主要的Vue Instance 然後透過Vu...
Vue.js Data Binding data Vue Instance 可以透過data來儲存外部資料 data 作用有二: 1 儲存元件內部狀態或資料2...
Vue Instance Life Cycle 這個章節 在筆者心裏覺得是最重要的一部分 因為整個component狀態的改變流程 就是根據life cycle...
Vue Component Register 在建立 Vue Instance 之後,如需要使用其他以定義過的Component 就必須把建立好的Compone...
Vue render Process 在Vue在render每個template的時候,首先是先把template轉換成 Virtual DOM再去讓compi...
Vuex State Management Vuex參考文件 Vuex 是 Vue.js 用來管理不同 Component 間狀態的一個函式庫 Vue.js S...
Vue.js how to work with this Javascript 中的 this 指向是使用情境的上下文相關, 舉例來說: <button...