解决vue.js修改数据无法触发视图
摘要:data:{ checkValue:{} } that.checkValue[key] = [] 赋值无法实时改变变量;(数据其实最终被修改,但是并没有触发检测从而更新视图) 原因:Vue 不能检测到对象属性的添加或删除 解决:改用vm.$set方法可以触发检测
阅读全文
posted @
2017-12-06 17:37
前端小透明
阅读(378)
推荐(0) 编辑
AngularJS基础
摘要:创建模块 var app = angular.module("myApp", []); 添加控制器 var app = angular.module("myApp", []); app.controller("myCtrl", function($scope) { $scope.firstName
阅读全文
posted @
2017-08-25 10:02
前端小透明
阅读(135)
推荐(0) 编辑
Vue购物车实例
摘要:demo演示地址:https://sunxiaomingatcn.github.io/SXM_DEMO/vueCar/buyCar.html
阅读全文
posted @
2017-05-12 17:29
前端小透明
阅读(509)
推荐(0) 编辑