前端基础

模板语法 {{}},在网页之中 :src="name" 在标签之中,name为变量

@input 绑定输入函数 v-model 双向绑定变量 <input type="text" v-model="input" @input="handleInput" placeholder="请输入要搜索的菜单内容" />

v-for="(obj,idx) in showList"

@click="add"

created(){}

const res = await axios.get("/09/carList.json");
console.log("res", res.data);

深拷贝 JSON.parse(JSON.stringify(this.list))