1.指令
v-ifv
v-else
v-show
v-hide 是增添属性display:none
v-on:click=“handleClick”表示在处理点击事件的时候,可以触发这个事件
简写可以@click
v-for="命名 in list " 序号 v-for="(item,index) in list {{index+1}}
2.vue的ajax
vue-resource 是vue的ajax
3.vue路由
< router-link :to=" { name:' funds ' } ">资金页面</router-link >
@click="funds"
methods: {
funds() {
this.$router.push({
name: "revenue"
});
},
}
4.组件引入