0👍
histogramOptions
should be a computed property, considering dynamicValue
. Like:
computed: {
histogramOptions() {
histogram: {
bucketSize: this.dynamicValue,
},
},
},
So you will be able to access this.histogramOptions
, which is reactive to this.dynamicValue
.
- [Vuejs]-Why can't load chunk?
- [Vuejs]-Requests and internet access is blocked in my Vue.js – Cordova App on IOS13
Source:stackexchange.com