一句话解释:
在script里 99% 是要写this.
在Vue 中会定义很多的函数或者变量
data computed methods prop filter 路由相关等
这些属性或方法往往需要在 template 或者 script 标签中使用
在template 中直接使用不需要this
在script 标签中(只有watch监听的数据不需要写, 里面的js同样需要this. ) 其他都需要 this. 名字来使用
2023-10-17 20:47:46
一句话解释:
在script里 99% 是要写this.
在Vue 中会定义很多的函数或者变量
data computed methods prop filter 路由相关等
这些属性或方法往往需要在 template 或者 script 标签中使用
在template 中直接使用不需要this
在script 标签中(只有watch监听的数据不需要写, 里面的js同样需要this. ) 其他都需要 this. 名字来使用
下一篇:Python之函数