0๐
computed: {
sampleId() {
return this.$store.getters['samples/all'].sample.sampleId
}
}
or
computed: {
...mapGetters('samples/all', ['sample']),
sampleId() {
return this.sample.sampleId
}
},
- [Vuejs]-Input field not getting updated on paste in vue/buefy
- [Vuejs]-Vite: Is there a possibility to exclude code elements from being built?
Source:stackexchange.com