Compare commits

...

2 commits

Author SHA1 Message Date
26b4d9f8c9 update 2024-06-26 10:10:10 +08:00
89589fb1cf update 2024-06-26 10:09:51 +08:00

View file

@ -1,10 +1,18 @@
<template> <template>
<a-layout-footer class="footer"> <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> </a-layout-footer>
</template> </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> <style lang="less" scoped>
.footer { .footer {