mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
refactor(projects): 修改了logo图片
This commit is contained in:
parent
ba443b4a39
commit
d82e53ee0e
@ -1,6 +1,5 @@
|
||||
<div align="center">
|
||||
<img src="./public/logo.svg"/>
|
||||
<h1>Ench Admin</h1>
|
||||
<h1> <img src="./src/assets/svg/logo.svg" style="width:30px"/> Ench Admin</h1>
|
||||
</div>
|
||||
|
||||
一个基于Vue3、vite3、ts、pinia、NaiveUI,Vue-Router4的后台管理项目
|
||||
@ -50,8 +49,3 @@ pnpm cz
|
||||
or
|
||||
pnpm commit
|
||||
```
|
||||
|
||||
|
||||
## 素材来源
|
||||
|
||||
[iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/collections/detail?spm=a313x.7781069.1998910419.d9df05512&cid=39973)
|
||||
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 955 B |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 955 B |
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<svg aria-hidden="true">
|
||||
<use :xlink:href="symbolId" :fill="color" />
|
||||
<svg aria-hidden="true" :width="`${props.size}px`">
|
||||
<use :xlink:href="symbolId" fill="currentColor" />
|
||||
</svg>
|
||||
</template>
|
||||
|
||||
@ -15,9 +15,9 @@ const props = defineProps({
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
color: {
|
||||
type: String,
|
||||
default: '#333',
|
||||
size: {
|
||||
type: Number,
|
||||
default: 18,
|
||||
},
|
||||
});
|
||||
const symbolId = computed(() => `#${props.prefix}-${props.name}`);
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="h-60px text-2xl flex-center overflow-hidden">
|
||||
<SvgIcon name="logo" class="w-9 h-9" />
|
||||
<div v-show="!appStore.collapsed" class="mx-5">{{ appStore.title }}</div>
|
||||
<SvgIcon name="logo" :size="28" />
|
||||
<span v-show="!appStore.collapsed" class="mx-4">{{ appStore.title }}</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -46,6 +46,9 @@ const routes: RouteRecordRaw[] = [
|
||||
path: '/login',
|
||||
name: 'login',
|
||||
component: () => import('@/views/login/index.vue'), // 注意这里要带上 文件后缀.vue
|
||||
meta: {
|
||||
title: '登录',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/no-permission',
|
||||
@ -53,7 +56,6 @@ const routes: RouteRecordRaw[] = [
|
||||
component: () => import('@/views/inherit-page/not-permission/index.vue'),
|
||||
meta: {
|
||||
title: '无权限',
|
||||
singleLayout: 'blank',
|
||||
},
|
||||
},
|
||||
{
|
||||
@ -62,7 +64,6 @@ const routes: RouteRecordRaw[] = [
|
||||
component: () => import('@/views/inherit-page/service-error/index.vue'),
|
||||
meta: {
|
||||
title: '服务器错误',
|
||||
singleLayout: 'blank',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user