This commit is contained in:
2026-01-13 12:46:07 +03:00
commit cc8716fa74
364 changed files with 88316 additions and 0 deletions

38
src/App.vue Normal file
View File

@@ -0,0 +1,38 @@
<style>
html,
body,
#myContainer {
height: 100%;
width: 100%;
background: url(../../../_libs/images/Fonoviy.png) left top repeat !important;
}
.myContainer {
height: 100%;
width: 100%;
background: url(../../../_libs/images/Fonoviy.png) left top repeat !important;
}
</style>
<template>
<v-app>
<v-main>
<router-view></router-view>
</v-main>
</v-app>
</template>
<script>
export default {
name: "App",
data: () => ({
}),
mounted() {
},
};
</script>