mirror of
https://github.com/kihashi/stardew_community_checklist.git
synced 2025-10-19 08:03:17 +00:00
20 lines
301 B
Vue
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>
|