VUE的基本語法

Bound_w發表於2018-11-26

UVE官網

1.VUE的介紹 

| 框架    | 介紹                                                         |
| ------- | ------------------------------------------------------------ |
| vue     | 尤雨溪,漸進式的JavaScript框架                                |
| react   | Facebook公司,裡面的高階函式非常多,對初學者不用好           |
| angular | 谷歌公司,目前更新到6.0,學習angular得需要玩一下typescript        
 Vue     angular2.0 3.0~6.0   React(高階函式 es6)初學者不友好 |

2.VUE的基本引入和建立

  1.下載

cdn方法下載

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>

  2.引包

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>

  3.例項化

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<div id="app">
    <!--模板語法渲染頁面-->
  <h2>{{ msg }}</h2>
  <h2>{{ "哈哈哈" }}</h2>
  <h2>{{ 1+1 }}</h2>
  <h2>{{ {'name':'alex'} }}</h2>
  <h2>{{ person.name }}</h2>
  <h2>{{ 1>2? "true":"false" }}</h2>
  <h2>{{ msg2.split('').reverse().join('') }}</h2>
  <div>{{ text }}</div>
</div>
<script src="vue.js"></script>
<script>
    //例項化物件
    new Vue({
        el:'#app',
        data:{
            msg:'黃瓜',
            person:{
                name:"alex"
            },
            msg2:"HELLO vue",
            text:'<h2>yuan</h2>>'
        }
    })
</script>

</body>
</html>
View Code

 VUE的模板語法可以插入你想插入的任何內容,除了if-else      if -else用三元運算子代替