1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/src/App.vue
2018-02-26 21:45:47 -05:00

20 lines
301 B
Vue

<template>
<div id="app">
<header-bar/>
<router-view/>
<app-footer/>
</div>
</template>
<script>
import HeaderBar from '@/components/HeaderBar'
import AppFooter from '@/components/AppFooter'
export default {
name: 'App',
components: {
HeaderBar,
AppFooter
}
}
</script>