Skip to content

Commit

Permalink
perf: udpate icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaviilee committed Nov 23, 2024
1 parent 6a56eb7 commit 1d4c6f9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/layout/default-layout.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<template>
<div>
<Header></Header>

<Breadcrumb
:name="name"
:slug="slug"
Expand All @@ -15,6 +14,9 @@
:withoutLeft="withoutLeft"
:adminMarks="adminMarks"
>
<template #logo>
<img svg-inline :src="logo" />
</template>
<slot name="breadcrumb"></slot>
</Breadcrumb>
<LeftSidebar>
Expand All @@ -35,6 +37,7 @@
</template>

<script>
import { __cdn } from "@jx3box/jx3box-common/data/jx3box.json";
export default {
name: "DefaultLayout",
props: {
Expand Down Expand Up @@ -95,6 +98,11 @@ export default {
return this.$route.name
}
},
data() {
return {
logo: __cdn + "logo/logo-light/bps.svg",
};
},
};
</script>

Expand Down

0 comments on commit 1d4c6f9

Please sign in to comment.