v-bind:style="单向绑定"
:style="单向绑定"
v-model="双向绑定"
v-on:click="绑定事件"
@click="绑定事件"
v-if="条件指令"
v-else
v-for="对象 in 数组"
vue的生命周期
created方法:在页面渲染之前执行
渲染过程
mounted方法:在页面渲染之后执行
vue中用debugger断点
getList(){
//使用axios发生ajax
axios.get("user.json")
.then(response=>{
console.log(response)
})//请求成功
.catch(error=>{
console.log(error)
})//请求失败
}