blob: f5b2bf6bfae2e5c76aa69ea08ae94d0356d63217 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<script setup lang="ts">
import { Loader2Icon } from 'lucide-vue-next'
const config = useRuntimeConfig();
</script>
<template>
<span>confplanner-web {{ config.public.versionString }}</span>
</template>
<style scoped>
.icon-loader {
animation: spin 1s linear infinite;
color: var(--color-text);
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
|