Vue 指令 - 传入字符串

LeB*_*eau 5 string vue.js vuejs2 custom-directive

我在 vue 中有以下自定义指令

<h1 v-role="'admin'">Your Dashboard</h1>
Run Code Online (Sandbox Code Playgroud)

它工作正常,但没有单引号会更干净。这可能吗?

  <h1 v-role="admin">Your Dashboard</h1>
Run Code Online (Sandbox Code Playgroud)