工匠基地官方网站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
870 B

<template>
<div class="text-center bg-gray-50 py-10">
本网站为小象CMS演示站提供的电视剧和电影资源均系收集于各大视频网站<br />
若本站收录的节目无意侵犯了贵司版权,请给我们留言,我们会及时逐步删除和规避程序自动搜索采集到的不提供分享的版权影视<br />
本站仅供测试和学习交流请大家支持正版
</div>
<footer class="text-center py-10">
Copyright {{ new Date().getFullYear() }} {{ config?.siteName }} Inc. All Rights Reserved.
<a href="https://beian.miit.gov.cn/" target="_blank" class="ml-10"> 备案号{{ config?.icpNo }}</a>
</footer>
</template>
<script setup lang="ts">
// 请求数据
import type {Config} from "~/types/config";
const { data: config } = await useServerRequest<Config>('/cms/website-field/config', {})
</script>