提问人:LeBlaireau 提问时间:6/28/2018 更新时间:6/28/2018 访问量:1413
Vue 指令 - 传入字符串
Vue directive - passing in string
问:
我在 vue 中有以下自定义指令
<h1 v-role="'admin'">Your Dashboard</h1>
它工作正常,但没有单引号会更干净。这可能吗?
<h1 v-role="admin">Your Dashboard</h1>
答: 暂无答案
评论
<h1 :v-role="admin">Your Dashboard</h1>
<h1 v-role="ROLES.ADMIN"> Your Dashboard</h1>
binding.expression
binding.value