0
You’re using single ‘ quote in v-model, So Vue could be taking it as a string, Try it with double quotes like this:
<div id="app">
<input type="text" class="from-control" v-model="message">
</div>
- [Vuejs]-Objects gets empty in VueJS Component
- [Vuejs]-How to use onchange event on selectize in vuejs?
0
did you include below line into your app.js file:
import vmodal from 'vue-js-modal';
for more infomations check: Vuejs v-model with Laravel
- [Vuejs]-Setting Custom Editor shows kendoDropDownList is not a function
- [Vuejs]-Get complete Vuetify item from v-autocomplete
Source:stackexchange.com