0๐
You can just use CSS and setup an animation to have the logo spin
- [Vuejs]-Vue JS โ Prevent show duplicate value in v-for
- [Vuejs]-VueJS โ nested accordion based on JSON response
0๐
.mylogo{
animation: rotation 3s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
<img src="https://www.transparentpng.com/download/circle-png/5CC7Ci-circle-png-picture.png" class="mylogo" width="80px" />
- [Vuejs]-How to reuse the vuex module for other components?
- [Vuejs]-Dynamically create html table from an Array
Source:stackexchange.com