mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-15 16:22:44 +00:00
Compare commits
2 commits
d2910b68db
...
26b4d9f8c9
Author | SHA1 | Date | |
---|---|---|---|
26b4d9f8c9 | |||
89589fb1cf |
1 changed files with 10 additions and 2 deletions
|
@ -1,10 +1,18 @@
|
|||
<template>
|
||||
<a-layout-footer class="footer">
|
||||
<t-link href="https://github.com/silenty4ng/k5web" target="_blank">K5Web - V0.1.202406100220</t-link>
|
||||
<t-space>
|
||||
<t-link href="https://github.com/silenty4ng/k5web" target="_blank">K5Web - V0.1.202406100220</t-link>
|
||||
<t-link v-show="state.isLhw711" href="https://beian.miit.gov.cn/" target="_blank">鲁ICP备2024058690号-1</t-link>
|
||||
</t-space>
|
||||
</a-layout-footer>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup></script>
|
||||
<script lang="ts" setup>
|
||||
import { reactive } from 'vue';
|
||||
const state = reactive({
|
||||
isLhw711: location.hostname == 'k5.lhw711.cn' ? true : false
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.footer {
|
||||
|
|
Loading…
Reference in a new issue