0👍
You have no reactive state meaning you have not specified one. You can specify one like this.
const app = new Vue({
el: '#app',
data() {
return {
message: 'hello, world!'
}
}
});
You’ll find all this great stuff and more right here on the documentation
- [Vuejs]-How to append input data to props in Vue.js
- [Vuejs]-How to make a <tr> element in vuejs that contains <slot> with html
Source:stackexchange.com