Attributes 11 / 42
Using v-bind
we set the attribute to the result of an expression. It gets updated whenever reactive properties (state, computed, etc.) in the expression change.
Try replacing :value="name"
with :value="name.toUpperCase()"
.
A common shortcut for v-bind:
is :
. Try replacing v-bind:value
with just :value
.