简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
vue watch对象或者数组的问题
普通的watch是这个样子的:data() {return {frontPoints: 0}},watch: {frontPoints(newValue, oldValue) {console.log(newValue)}}数组的watch是这个样的:data() {return {...
vue 中 Type of the default value for data prop must be a function的解决方案
vue 中 Type of the default value for ‘data’ prop must be a function的解决方案vue官方文档搭配es6语法简单粗暴解决props: {dataList: {type: Object,default: () => ({a:1,b:2})}}
到底了