[Vuejs]-Invalid expression: Invalid or unexpected token in Vue.js for-loop

2👍

I know this issue, use

<Button>{{item.content}}</Button>

get the error, but if I use

<Button v-text="item.content"></Button>

there will not have this issue.

Leave a comment