1. 程式人生 > >Vue--基本語法

Vue--基本語法

Vue語法學習

  1. 引入:script的src中匯入vue包
  2. 建立:在script中建立vue物件
  3. 雙向繫結:
  4. el----選擇器,鎖定標籤
  5. data----定義變數,將標籤內容繫結給變數
  6. {{變數}}----在標籤中顯示內容
  7. 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>