I use vuetify
and vue-property-decorator
for display an alert:
<v-alert dismissible :value="true" color="error" icon="new_releases">
some text.. some text.. <a @click="changeTheAlertMessage">click me</a>.
</v-alert>
How I change the inner text/html by clicking on the a-button?
@Component({})
export default class SomeView extends Vue {
changeTheAlertMessage() {
//here: How I access to alert instance???
}
}