摘要: import Vue from "vue"; new Vue({ el : "#mybox", data : { a : 100 }, methods : { add : function(){ this.a ++; } } }); 特别注意,add方法必须用function来定义,不能用()=>{ 阅读全文
posted @ 2020-04-13 15:58 yun迹 阅读(1795) 评论(0) 推荐(0) 编辑