上传文件至 /

This commit is contained in:
于洋 2025-05-23 22:36:21 +08:00
commit 5ccf2ff88d

31
copyright-icp.vue Normal file
View File

@ -0,0 +1,31 @@
<template>
<div class="icp">{{`© ${year} ${author} ` }}<a href="http://beian.miit.gov.cn/" target="_blank">{{ record }}</a></div>
</template>
<script setup>
let year = new Date().getFullYear(); //
let author = '开动文化'; //
let record = '京ICP备2025124324号-1'; //
</script>
<style>
.icp {
bottom: 0;
right: 0;
margin-top: 0px;
width: 100%;
white-space: pre;
text-align: center;
color: white;
background-color: black;
z-index: 0;
}
.icp > a {
color: gray;
text-decoration: none;
}
.icp > a:hover {
color: aqua;
text-decoration: none;
}
</style>