[Vuejs]-How to fix these errors I'm getting in the console?

0๐Ÿ‘

v-model can only be used on Form input, textarea and select elements according to https://v2.vuejs.org/v2/guide/forms.html

0๐Ÿ‘

You need to have an element in your blade component that has an id of app. <div id="app"></div> and place your vue component inside that element.

Leave a comment