Integrate nav

- other minor refactors
This commit is contained in:
geoffrey45
2022-04-14 11:30:19 +03:00
parent 90d646d674
commit 85c59b4cba
28 changed files with 266 additions and 141 deletions
+4 -3
View File
@@ -1,20 +1,21 @@
<template>
<div class="loaderx" :class="{ loader: loading, not_loader: !loading }">
<div v-if="!loading">😹</div>
<div v-if="!loading">🦋</div>
</div>
</template>
<script setup>
import state from "@/composables/state";
const loading = state.loading
const loading = state.loading;
</script>
<style lang="scss">
.loaderx {
width: 1.5rem;
height:1.5rem;
height: 1.5rem;
border-radius: 50%;
user-select: none;
}
.loader {