Feat: Add board view

This commit is contained in:
jhynsoo 2024-05-13 14:38:27 +09:00
parent 3e2c6f7195
commit beb6f3283a

20
src/views/BoardView.vue Normal file
View File

@ -0,0 +1,20 @@
<script setup>
import { RouterView } from 'vue-router';
import AppHeader from '@/components/AppHeader.vue';
</script>
<template>
<AppHeader />
<main>
<RouterView />
</main>
</template>
<style scoped>
main {
/* max-width: 1280px; */
max-width: 960px;
padding: 20px;
margin: 0 auto;
}
</style>