first commit

This commit is contained in:
2026-06-16 17:12:08 +09:00
commit e1bc5a1dfc
257 changed files with 49823 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
// Relay 디자인 시스템 전역 스타일(토큰 + 공통 컴포넌트 클래스)
import '@/assets/styles/relay.css'
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount('#app')