<template> <el-row class="item" v-show="!UserCursor('specialist')"></el-row></template>
meteor: { /**
* @return {boolean}
*/
UserCursor(auth) { return this.personAuth === auth;
},
}这样写提示错误TypeError: _vm.UserCursor is not a function"?
2 回答
慕桂英3389331
TA贡献2036条经验 获得超8个赞
暂时改成这样了
<template> <el-row class="item" v-show="!('specialist'===this.personAuth)"></el-row></template>
- 2 回答
- 0 关注
- 438 浏览
添加回答
举报
0/150
提交
取消