私はvue-routerを使用しています。リンクURLへのバインド値
リンクに値をバインドするにはどうすればよいですか?
<a v-link="'people/edit/{{ item.id }}'">Edit</a>
エラー:あなたはそれを使用しているよう
link="'people/edit/{{ item.id}}'": attribute interpolation is not allowed in Vue.js directives and special attributes.
'v-link =" people/edit/'+ item.id "'はどうですか? – Dogbert
@Dogbertそれは動作します... – Alvin