mirror of
https://github.com/gotson/komga.git
synced 2025-12-10 02:23:27 +01:00
22 lines
399 B
Vue
22 lines
399 B
Vue
<template>
|
|
<v-app>
|
|
<RouterView />
|
|
|
|
<SnackQueue />
|
|
<DialogConfirmEditInstance />
|
|
<DialogConfirmInstance />
|
|
</v-app>
|
|
|
|
<PiniaColadaDevtools />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { PiniaColadaDevtools } from '@pinia/colada-devtools'
|
|
import { useThemeWatcher } from '@/composables/themeWatcher'
|
|
|
|
useThemeWatcher()
|
|
</script>
|
|
|
|
<style>
|
|
@import 'styles/global.scss';
|
|
</style>
|