This commit is contained in:
wkc
2026-01-26 18:20:13 +08:00
commit 6e4ab22d4c
622 changed files with 68094 additions and 0 deletions

20
ruoyi-ui/src/App.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from "@/components/ThemePicker"
export default {
name: "App",
components: { ThemePicker }
}
</script>
<style scoped>
#app .theme-picker {
display: none;
}
</style>