I wanted to know if it's possible to access variables from vue's data collection, but only by specifying the variable name through another variable. This is what I mean:
Some of my variables/properties:
var siteAdminVue = new Vue({
  el: "#siteAdmin",
  data: {
    tagtitle: "",
    tagparent: "",
    tagdesc: "",
    badgestitle: "",                    
    badgesdesc: "",               
    badgesprivilege: 0,                  
    newstitle: "",                    
    newsnotify: false,                  
    newscontent: "", 
}             
And now I want to set some of these properties in one of my methods in vue:
  var self = this;
  var type = currentSection.toString().substr(4);
  var selectElement = document.getElementById(currentSection + "select");
  // name of vue property, for example newstitle
  var titleElement = type + "title";    
  self.[titleElement]= selectElement.value;
I don't want to use a switch statement to check if I need to set newstitle, badgestitle and so on, so I thought I could store the name in a variable which is already defined in vue and then set it. Is there a way to do this?
Thanks in advance
 
    