How to blink specific row for 2 times using Vue.js & Vuetify?

After creating a record, I showed an alert green message if API returns 200 OK, and red otherwise. Right now, it is working perfectly I used Vuex + Vuetify Snackbar.

this.notifcationData = {
    color: 'green',
    text: campaign.name + ' - deleted successfully !'
}



<v-snackbar timeout="1000" v-model="notification" absolute top :color="notifcationData.color" outlined right>
    <strong>
        {{ notifcationData.text }}
    </strong>
</v-snackbar>

enter image description here

I want to improve the UX one more notch. I would like to blink that specific row for 1 sec (2 times).

I know I have access to the campaign.name

How do I achieve that in Vue.js ?