[Vuejs]-Display in v-for laravel-vue

0👍

Your data must be a function that returns your data.

Like this:

data() {
    return {
        items:[]
    }
}

Question: Is your interpolation tag defined to @{{}} correctly?

Leave a comment