Files
app_hub/src/App.vue
2026-01-13 12:46:07 +03:00

39 lines
496 B
Vue

<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>