[메인 페이지 작업중] 추후 1개로 통합하기 위해 내용 동기화

This commit is contained in:
2025-09-22 13:47:28 +09:00
parent 75e9831907
commit 8282a4d037
2 changed files with 8 additions and 10 deletions

View File

@@ -5,7 +5,7 @@
<div class="max-w-4xl mx-auto">
<div class="text-center mb-8">
<h1 class="text-4xl font-bold text-gray-900 mb-4">
Integrated Bio Foundry Platform
Integrated Bio Foundry Platform(pages/[tabId]/index.vue)
</h1>
<p class="text-xl text-gray-600">
통합 바이오 파운드리 플랫폼에 오신 것을 환영합니다

View File

@@ -5,7 +5,7 @@
<div class="max-w-4xl mx-auto">
<div class="text-center mb-8">
<h1 class="text-4xl font-bold text-gray-900 mb-4">
Integrated Bio Foundry Platform
Integrated Bio Foundry Platform(pages/index.vue)
</h1>
<p class="text-xl text-gray-600">
통합 바이오 파운드리 플랫폼에 오신 것을 환영합니다
@@ -19,7 +19,7 @@
<p class="text-lg text-gray-800 mb-2">
안녕하세요,
<span class="font-semibold text-blue-600">{{
userStore.userName
userStore.user?.name
}}</span
>!
</p>
@@ -100,13 +100,12 @@
<script setup lang="ts">
import { useUserStore } from "~/stores/user";
import { useRouter } from 'vue-router'
const router = useRouter()
onMounted(()=> {
router.push('/1/')
})
import { useRouter } from "vue-router";
const router = useRouter();
onMounted(() => {
router.push("/1/");
});
// 페이지 메타데이터 설정
definePageMeta({
@@ -115,7 +114,6 @@ definePageMeta({
});
const userStore = useUserStore();
</script>
<style scoped>