App.vue 706 Bytes
<template>
<div id="app">
  <siteHeader></siteHeader>
  <div class = "body">
    <noticeList></noticeList>
  </div>
</div>
</template>

<script>
import siteHeader from './components/header'
import loginMenu from './components/loginMenu'
import noticeList from './components/noticeList'

export default {
  name: 'App',
  components: {
    'siteHeader': siteHeader,
    'loginMenu': loginMenu,
    'noticeList': noticeList
  }
}
</script>

<style>
body{
    margin: 0;
}
a{
    text-decoration: none;
    color: inherit;
}
li{
    list-style: none;
}
input{
    border: none;
}
button{
    border:none;
}
ul{
    padding:0;
}
.body{
  margin-top:10px;
  display: flex;
  justify-content: center;
}
</style>