32 lines
688 B
Vue
32 lines
688 B
Vue
<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>
|