refactor: clean imports

This commit is contained in:
Corentin Thomasset 2022-04-16 20:59:44 +02:00
parent d066319b45
commit 724e142222
No known key found for this signature in database
GPG key ID: DBD997E935996158
4 changed files with 5 additions and 14 deletions

View file

@ -1,14 +1,9 @@
<script setup lang="ts">
import { RouterView } from 'vue-router'
import { layouts } from './layouts';
import { computed } from 'vue';
import { useRoute } from 'vue-router'
import { useRoute, RouterView } from 'vue-router'
import { darkThemeOverrides, lightThemeOverrides } from './themes'
import {
darkTheme,
NConfigProvider,
NGlobalStyle,
} from 'naive-ui'
import { darkTheme, NGlobalStyle, NMessageProvider } from 'naive-ui'
import { useStyleStore } from './stores/style.store';
const route = useRoute();