很多同學(xué)一定都聽過MVVM、組件、數(shù)據(jù)綁定之類的專業(yè)術(shù)語,而vue框架正是這樣的一種框架。vue的作用是:通過盡可能簡(jiǎn)單的 API 實(shí)現(xiàn)響應(yīng)的數(shù)據(jù)綁定和組合的視圖組件。
第一部分:vue介紹與使用
話不多說,我們先來看一看最簡(jiǎn)單的vue是怎么使用的。實(shí)際上,我們只需要引入一個(gè)js文件即可(當(dāng)然,這只是一種相對(duì)簡(jiǎn)單的方法,還有其他的方法),這個(gè)js文件即對(duì)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" &