I have the following dynamic var
{{ region }}
which could equal north, south, east or west.
I want to use it to pull in the variable from my data object
I tried
{{ #region.copy }}
Is this possible in vue
data: function() {
return {
north : {
copy: "this is the north copy"
},
south : {
copy: "this is the north copy"
}
}