aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
blob: 56bd733596d1d4b8c0f6d5623969a80adc6bd16b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<script setup lang="ts">
// import { computed } from 'vue';
// import { darkTheme, NGlobalStyle, NMessageProvider, NNotificationProvider } from 'naive-ui';
// import { useRoute, RouterView } from 'vue-router';
// import { darkThemeOverrides, lightThemeOverrides } from './themes';
// import { layouts } from './layouts';
// import { useStyleStore } from './stores/style.store';

// const route = useRoute();
// const layout = computed(() => route?.meta?.layout ?? layouts.base);
// const styleStore = useStyleStore();

// const theme = computed(() => (styleStore.isDarkTheme ? darkTheme : null));
// const themeOverrides = computed(() => (styleStore.isDarkTheme ? darkThemeOverrides : lightThemeOverrides));
</script>

<template>
  <!-- <n-config-provider :theme="theme" :theme-overrides="themeOverrides">
    <n-global-style />
    <n-message-provider placement="bottom">
      <n-notification-provider placement="bottom-right">
        <component :is="layout"> -->
  <router-view />
  <!-- </component>
      </n-notification-provider>
    </n-message-provider>
  </n-config-provider> -->
</template>

<style>
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}
</style>