v-on / v-bind
```<template>
<div>
<!-- v-bind -->
<!-- 完整写法 -->
<a v-bind:href="link">百度</a>
<!-- 简写 -->
<a :href="link">百度</a>
<a :[attributeName]="link">百度</a>
<hr>
<!-- v-on -->
<!-- 完整写法 -->
<button v-on:click="attribute">enter your</button>
<!-- 简写 -->
<button @click="attribute">enter your</button>
<button @[target]="attribute">enter your</button>
</div>
</template>
<script>
export default {
name: 'IndexPage',
data(){
return {
link : 'http://www.baidu.com',
attributeName : 'href',
attribute : 'Point',
target : 'click'
}
},
methods : {
Point(){},
}
}
</script>