Files
arcticnewone/app/pages/news.vue
T
陈春 c9cf644ac5 chore: 添加构建推送脚本并更新项目配置
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像
- 更新 .dockerignore 排除 pnpm-workspace.yaml
- 更新项目依赖和配置文件
2026-06-03 17:19:14 +08:00

14 lines
280 B
Vue
Executable File

<template>
<div class="page-container flex min-h-screen items-center justify-center pt-32">
<h1 class="text-4xl font-bold">News Page</h1>
</div>
</template>
<script setup lang="ts">
// News 页面
useSeoMeta({
title: 'News',
description: '新闻页面',
})
</script>