上传文件至 /
This commit is contained in:
commit
5ccf2ff88d
31
copyright-icp.vue
Normal file
31
copyright-icp.vue
Normal 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>
|
||||
Loading…
x
Reference in New Issue
Block a user