Files
AlgerMusicPlayer/src/App.vue
T

18 lines
266 B
Vue
Raw Normal View History

2021-07-19 17:36:48 +08:00
<template>
2021-07-19 23:13:22 +08:00
<n-config-provider :theme="darkTheme">
2021-07-19 17:36:48 +08:00
<router-view></router-view>
2021-07-19 23:13:22 +08:00
</n-config-provider>
2021-07-19 17:36:48 +08:00
</template>
<script lang="ts" setup>
2021-07-19 23:13:22 +08:00
import { darkTheme } from 'naive-ui'
2021-07-19 17:36:48 +08:00
</script>
<style lang="scss" scoped >
div {
box-sizing: border-box;
}
</style>