1๐
โ
You could use brackets accessor :
rawData(){
return this.$store.getters['get'+this.dataName]
}
rawData
should be a computed property and 'get'+this.dataName
has to be in your getters like getTodos
Source:stackexchange.com