记录vue2的一些奇怪bug
1 一个函数中,前面的代码数据更改,后面报错,视图不会更新
在html引入vue.js的页面不会更新,但是在单页面组件中视图会更新
<template>
<div>
{{counter}}
</div>
</template>
<script>
data() {
return {
counter: 0,
},
methods: {
handle() {
this.counter++;
throw new Errow()
},
</script>
2 props不会即时更新
父组件中的data改变了,对应props不改变,而且是原始数据类型,最后是通过函数传参解决的。