0👍
You missed the underscore for the input
<input type="number" id="frameStart" v-model="startFrame"/>
And for getter and setter
startFrame: {
get(){
return this.object.startFrame;
},
set(newFrame){
this.object.startFrame = Math.max(Math.min(newFrame, this.object.frames.length - 1), 0);
}
}
- [Vuejs]-If else condition in v-for with v-checkbox using Vuetify
- [Vuejs]-Set the dynamic height and width to Konva Stage in Vue.js
Source:stackexchange.com