27 lines
979 B
Vue
27 lines
979 B
Vue
<script setup lang="ts">
|
|
const HotArray = await $fetch("https://data.zziyu.cn/hot/webs")
|
|
|
|
useHead({
|
|
title: '网站地图',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<!-- <Title>网站地图</Title>-->
|
|
<div style="display: flex;justify-content: center;flex-direction: column;align-items: center">
|
|
<NuxtLink to="/">主页</NuxtLink>
|
|
<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>
|
|
<!-- <NuxtLink to="/">主页</NuxtLink>-->
|
|
<NuxtLink to="/tools/qqazk/">笔顺码字典首页</NuxtLink>
|
|
<NuxtLink to="/tools/qqazk/about">笔顺码字典关于</NuxtLink>
|
|
<NuxtLink to="/tools/time/">大屏时钟</NuxtLink>
|
|
<NuxtLink to="/map/qqazk">所有笔顺码</NuxtLink>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |