vue Object
1.Vue.config.productionTip = false; //去掉错误
2.new Vue({ el:'#root',data:{name:"zhangsan",methods:{show:function(){}}}})
el : 对应容器
data:数据
methods : 事件方法
3, 模板变量 {{ }}包住,放在标签体中(不在标签属性上)
4.属性绑定变量, v-bind 或 : v-model(同步)
5.绑定事件 @click="show" @click.pr..
原创
2022-05-17 21:29:08 ·
691 阅读 ·
0 评论