mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-10-31 00:57:11 +08:00
feat: 新增系统配置
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
<template>
|
||||
<section class="system-logo" :class="{ collapsed: props.collapsed }" @click="toHome">
|
||||
<img class="logo" src="@/assets/images/logo.svg" />
|
||||
<span class="system-name">ContiNew Admin</span>
|
||||
<img class="logo" :src="appStore.getLogo() ?? '@/assets/images/logo.svg'" alt="logo"/>
|
||||
<span class="system-name">{{ appStore.getTitle() }}</span>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import {useAppStore} from "@/stores";
|
||||
|
||||
const appStore= useAppStore();
|
||||
|
||||
interface Props {
|
||||
collapsed?: boolean
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user