refactor(layouts): layout/header 反转色样式补充

This commit is contained in:
元家怿
2022-04-29 15:53:12 +08:00
parent 401f0c748d
commit 01d0bcbfd0
9 changed files with 30 additions and 13 deletions

View File

@@ -2,7 +2,7 @@
<hover-container
tooltip-content="github"
class="w-40px h-full"
content-class="hover:text-primary"
:inverted="theme.header.inverted"
@click="handleClickLink"
>
<icon-mdi-github class="text-20px" />
@@ -10,6 +10,9 @@
</template>
<script lang="ts" setup>
import { useThemeStore } from '@/store';
const theme = useThemeStore();
function handleClickLink() {
window.open('https://github.com/honghuangdc/soybean-admin', '_blank');
}