Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
you need to hang the handler on the div
and make the handler in the methods
<div v-on:click="handler">какой-то текст</div>
handler(e) {
const text = e.target.innerText
// сюда попадет ваш текст
}
For example, pass text through data or props.
<div v-on:click="handler">{{someText}}</div>
data(){
return {
someText: 'Какой-то текст...'
}
},
methods: {
handler() {
return this.someText;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question