Feat: Add board view
This commit is contained in:
parent
3e2c6f7195
commit
beb6f3283a
20
src/views/BoardView.vue
Normal file
20
src/views/BoardView.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user