This commit is contained in:
xds
2026-02-04 14:43:22 +03:00
commit 4f460b2876
40 changed files with 11425 additions and 0 deletions

15
src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup>
import { RouterView } from 'vue-router'
</script>
<template>
<RouterView v-slot="{ Component }">
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
</RouterView>
</template>
<style>
/* Global styles are already imported in main.js */
</style>