| | |
| | | <script setup>
|
| | | import variables from '@/assets/styles/variables.module.scss'
|
| | | import logo from '@/assets/logo/logo.png'
|
| | | import useSettingsStore from '@/store/modules/settings'
|
| | |
|
| | | defineProps({
|
| | | collapse: {
|
| | |
| | | }
|
| | | })
|
| | |
|
| | | const title = ref('若依管理系统');
|
| | | const store = useStore();
|
| | | const sideTheme = computed(() => store.state.settings.sideTheme);
|
| | | const title = import.meta.env.VITE_APP_TITLE;
|
| | | const settingsStore = useSettingsStore();
|
| | | const sideTheme = computed(() => settingsStore.sideTheme);
|
| | | </script>
|
| | |
|
| | | <style lang="scss" scoped>
|