[Vuejs]-Can not use @change function in v-text-field which is dynamically rendered

0👍

you are writting wrong method, is methods

you have to use

methods: {
    handleChange(item) {
       console.log(`${item} was changed`)
     }
}

Leave a comment