Make environment role display dynamic

This commit is contained in:
Montana
2018-09-18 10:56:56 -04:00
parent ccce20c48c
commit 32d04bfce4
3 changed files with 130 additions and 112 deletions

View File

@@ -18,7 +18,8 @@ export default {
props: {
choices: Array,
initialData: Object
initialData: String
},
data: function () {
@@ -28,6 +29,11 @@ export default {
methods: {
change: function (e) {
this.value = e.target.value
}
},
// method to map ugly name to human readable name here
},
mounted: function () {
console.log(this.initialData, this.choices)
}
}