first commit

This commit is contained in:
2025-09-24 13:31:30 +08:00
commit b1ac9b9c08
26 changed files with 8239 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div id="allstyle">
<div class="header">
<h1>文章内容页面</h1>
</div>
<p>通过传来的{{ urls }}向服务器发送请求获取相关文章的链接</p>
</div>
</template>
<script setup>
import { useRoute } from 'vue-router';
const urls = useRoute().query
</script>
<style></style>