Vue安装
Vue官网:http://unpkg.com/vue
- 引入vue
<script:src="http://unpkg.com/vue"></script>
-
Vue数据渲染
- html
<div id="example"> <h1>{{message}}</h1> </div>
- js
<script> // 初始化数据 window.onload = function () { var vue = new Vue({ el: '#app', data: { message: 'Hello vue!' } }); }; </script>