VUE 中data与methods区别

Posted xieting123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE 中data与methods区别相关的知识,希望对你有一定的参考价值。

```

let vm=new Vue({ //根实例

el:‘#app‘,

data:{//都是数据

},

methods:{ // methods 和data中的数据会全部放到vm上,而且名字不能冲突,冲突会报错,methods中的this指向的都是实例 fn(event,a){console.log(event)}, } })

```

以上是关于VUE 中data与methods区别的主要内容,如果未能解决你的问题,请参考以下文章

vue的watch、methods 和 computed 的区别

vue-learning:20 - js - 区别:filters / data / computed / watch / methods

vue中computer与watch区别

vue中methods,computed, watch 的区别

vue_组件中的data和method

vue中computed计算属性与methods对象中的this指针