Is it feasible to retrieve the value of an input within its attribute?
For instance, if you want the input to be green when not empty without utilizing Vue.data.
For instance:
<v-text-field background-color="'green' ? <THISVAL> : 'red'"></v-text-field>
Or is the usage of v-model and a variable defined in Vue.data necessary?