c9cf644ac5
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像 - 更新 .dockerignore 排除 pnpm-workspace.yaml - 更新项目依赖和配置文件
14 lines
289 B
Vue
Executable File
14 lines
289 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">Studio Page</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Studio 页面
|
|
useSeoMeta({
|
|
title: 'Studio',
|
|
description: '工作室页面',
|
|
})
|
|
</script>
|