[Vuejs]-Vue.js: transform animation doesn't work on click

2👍

Sometimes, rotate won’t work on inline elements.

Try

.arrow {
    display: inline-block; /* or block */
}

See https://stackoverflow.com/a/28664701/5599288

Leave a comment