We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我在 v-for 循环的 tag 组件中绑定了 methods 的函数,这个函数的作用是返回不同的颜色展示的内容。
v-for
<div class="sx_work_title"> <div>{{ showData.title }}</div> <van-tag :color="tagColor" plain>{{ tagType(showData.tag) }}</van-tag> </div>
tagColor 在 data 对象中声明了,导致我在 tagType 方法直接使用 this.tagColor 的时候就会报上面的警告。对对象进行克隆并不能解决这 warn。把这个变量放到函数内部定义,而不在 data 对象中去声明。
tagColor
tagType
this.tagColor
warn
tagColor(tag) { switch (tag) { case 1: return '#C79819' break case 2: return '#259E15' break default: break } },
一直加载不出来:
原因:import 为空
import { login } from "";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
记录 Vue 使用报错的不完整指南
1.Vue 循环报错:You may have an infinite update loop in a component
我在
v-for
循环的 tag 组件中绑定了 methods 的函数,这个函数的作用是返回不同的颜色展示的内容。tagColor
在 data 对象中声明了,导致我在tagType
方法直接使用this.tagColor
的时候就会报上面的警告。对对象进行克隆并不能解决这warn
。把这个变量放到函数内部定义,而不在 data 对象中去声明。2.emitting CopyPlugin
一直加载不出来:
原因:import 为空
The text was updated successfully, but these errors were encountered: