Vue--基本語法
阿新 • • 發佈:2018-12-21
Vue語法學習
- 引入:script的src中匯入vue包
- 建立:在script中建立vue物件
- 雙向繫結:
- el----選擇器,鎖定標籤
- data----定義變數,將標籤內容繫結給變數
- {{變數}}----在標籤中顯示內容
- methods----繫結事件,控制變數內容。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script type="text/javascript" src="js/vue.min.js"></script> </head> <body> <div id="demo1"> <div>{{msg}}</div> <button @click='fnChaMsg'>事件觸發</button> </div> <!-- 引入vue 建立vue物件 雙向繫結--> <script> var em = new Vue({ el:'#demo1', data:{msg:'HI, Alice!'}, methods:{ fnChaMsg:function(){ this.msg = "Hello, alice!"; } } }) </script> </body> </html>