mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-14 06:30:49 +08:00
55 lines
1.1 KiB
Vue
55 lines
1.1 KiB
Vue
<template>
|
|
<div class="app-container" :class="{ mobile: isMobile, noElectron: !isElectron }">
|
|
<n-config-provider :theme="theme === 'dark' ? darkTheme : lightTheme">
|
|
<n-dialog-provider>
|
|
<n-message-provider>
|
|
<router-view></router-view>
|
|
</n-message-provider>
|
|
</n-dialog-provider>
|
|
</n-config-provider>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { darkTheme, lightTheme } from 'naive-ui';
|
|
import { onMounted } from 'vue';
|
|
|
|
import homeRouter from '@/router/home';
|
|
import store from '@/store';
|
|
import { isElectron } from '@/utils';
|
|
|
|
import { isMobile } from './utils';
|
|
|
|
const theme = computed(() => {
|
|
return store.state.theme;
|
|
});
|
|
|
|
onMounted(() => {
|
|
store.dispatch('initializeSettings');
|
|
store.dispatch('initializeTheme');
|
|
if (isMobile.value) {
|
|
store.commit(
|
|
'setMenus',
|
|
homeRouter.filter((item) => item.meta.isMobile)
|
|
);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.app-container {
|
|
@apply h-full w-full;
|
|
user-select: none;
|
|
}
|
|
|
|
.mobile {
|
|
.text-base {
|
|
font-size: 14px !important;
|
|
}
|
|
}
|
|
|
|
.html:has(.mobile) {
|
|
font-size: 14px;
|
|
}
|
|
</style>
|