2023-08-27 16:30:58 +00:00
|
|
|
<script setup lang="ts">
|
2023-09-01 17:54:56 +00:00
|
|
|
const HotArray = await $fetch("https://data.zziyu.cn/hot/webs")
|
2023-08-27 16:30:58 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<Title>网站地图</Title>
|
|
|
|
<div style="display: flex;justify-content: center;flex-direction: column;align-items: center">
|
|
|
|
<NuxtLink to="/">主页</NuxtLink>
|
2023-09-01 17:54:56 +00:00
|
|
|
<NuxtLink to="/data/all">数据收集所有</NuxtLink>
|
|
|
|
<!-- <NuxtLink to="/data/bilibili">数据收集Bilibili</NuxtLink>-->
|
|
|
|
<!-- <NuxtLink to="/data/baidu">数据收集百度</NuxtLink>-->
|
|
|
|
<NuxtLink v-for="(item,index) in HotArray" :to="'/data/'+item" :key="index">数据收集 {{item}}</NuxtLink>
|
2023-08-27 16:30:58 +00:00
|
|
|
<NuxtLink to="/">主页</NuxtLink>
|
|
|
|
<NuxtLink to="/tools/qqazk/">笔顺码字典首页</NuxtLink>
|
|
|
|
<NuxtLink to="/tools/qqazk/about">笔顺码字典关于</NuxtLink>
|
2023-09-01 08:52:32 +00:00
|
|
|
<NuxtLink to="/map/qqazk">所有笔顺码</NuxtLink>
|
2023-08-27 16:30:58 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|