Having trouble retrieving the textContent
from a blink element and modifying it. Interestingly, when attempting the same process with a tag or div tag, it works without any issues.
<b-link
:ref="index"
v-b-toggle="`${index}`"
@click="changeText(index)"
>View More</b-link>
changeText(index) {
console.log(this.$refs[index][0].textContent); // undefined
}