17 lines
272 B
Vue
17 lines
272 B
Vue
<script lang="ts" setup>
|
|
import MainLayout from "./components/MainLayout.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<v-app theme="dark">
|
|
<MainLayout />
|
|
</v-app>
|
|
</template>
|
|
|
|
<style>
|
|
body,
|
|
#app {
|
|
font-family: "Noto Sans", "Roboto", "Segoe UI", sans-serif !important;
|
|
}
|
|
</style>
|