<input type="text" value="Сюда">
<label data-value="Название"></label>
data: () => ({
value: '',
values: [ 'hello, world!!', 'fuck the world', 'fuck everything' ],
}),
<input v-model="value">
<button v-for="(n, i) in values" @click="value = n">set value #{{ i + 1 }}</button>
<div id="app">
<input v-on:click="changeValue" type="text" :value="value">
<label :data-value="dataValue"></label>
</div>
new Vue({
el: '#app',
data: {
value: ' ',
dataValue: 'Какой-то текст'
},
methods:{
changeValue(){
this.value = this.dataValue
}
}
})