21 lines
263 B
Vue
21 lines
263 B
Vue
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<span class="blink">
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.blink {
|
|
display: inline-block;
|
|
animation: blinker 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes blinker {
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
</style>
|