缩写
1.v-bind 缩写
<!-- 完整语法 --><a v-bind:href="url">...</a>
<!-- 缩写 --><a :href="url">...</a>
2.v-on 缩写
<!-- 完整语法 --><a v-on:click="doSomething">...</a>
<!-- 缩写 --><a @click="doSomething">...</a>
例子:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app1">
<a v-bind:href="url">
完整语法v-bind:href
</a>||
<a :href="url">
缩写 :href
</a>
<br />
<button v-on:click="doSomething">
完整语法v-on:click
</button>
<button @click="doSomething">
缩写@click
</button>
</div>
</body>
</html>
<script>
var app1 = new Vue({
el: "#app1",
data:{
url:"https://cn.vuejs.org/v2/guide/syntax.html#缩写"
},
methods:{
doSomething:function(){
console.log("123")
}
}
})
</script>
