Vue 函数在methods中可以正常调用,但在computed中调用会报错

methods和computed的效果实际上是一样的,但在开发中把methods中的方法写入到computed的中,会一直报错:函数未被定义。。

解决方法:
methods调用函数需要带括号。
computed调用函数不需要带括号。

ps:如果在标签中需要调用methods或computed中的方法,同理。

你可能感兴趣的:(Vue)