index.html
<div id="vue-app">
<!-- ES6语法 引用-->
<h1>{{name}}</h1>
<p>
<!-- 绑定事件 v-bind-->
<a :href="website">website</a>
</p>
<!-- 解析标签 -->
<p v-html="website1">website1</p>
<!-- 绑定赋值 -->
<input type="text" v-bind:value="name">
</div>
app.js
//实例化一个Vue对象
new Vue({
el: '#vue-app',//
data() {
return {
name: 'ZERO',
website: 'https://baidu.com',
website1: '<a href="http://taobao.com">taobao</a>'
}
}
})
CDN
<script src="https://cdn.jsdelivr.net/npm/vue"></script>