很多同學一定都聽過MVVM、組件、數據綁定之類的專業(yè)術語,而vue框架正是這樣的一種框架。vue的作用是:通過盡可能簡單的 API 實現響應的數據綁定和組合的視圖組件。
第一部分:vue介紹與使用
話不多說,我們先來看一看最簡單的vue是怎么使用的。實際上,我們只需要引入一個js文件即可(當然,這只是一種相對簡單的方法,還有其他的方法),這個js文件即對vue的封裝。下面的例子可以輸出hello world。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>vue</title> <script src="https://unpkg.com/vue/dist/vue.js"></script> </head> <body> <div id="example"> {{message}} </div> <script> var example=new Vue({ el:'#example', data:{ message: "hello word" &