mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-06-19 13:07:33 +08:00
23 lines
331 B
Vue
23 lines
331 B
Vue
<template>
|
|
<div class="app">
|
|
<n-config-provider :theme="darkTheme">
|
|
<router-view></router-view>
|
|
</n-config-provider>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { darkTheme } from 'naive-ui'
|
|
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped >
|
|
div {
|
|
box-sizing: border-box;
|
|
}
|
|
.app {
|
|
user-select: none;
|
|
}
|
|
</style>
|