1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00

Add navigation and bundle display area.

This commit is contained in:
John Cleaver 2018-04-26 22:53:41 -04:00
parent 222732cf70
commit d912e9eb48

View File

@ -1,13 +1,16 @@
<template> <template>
<div>
<BundleNav />
<section class="section">
<router-view></router-view>
</section>
</div>
</template> </template>
<script> <script>
import BundleNav from '@/components/BundleNav.vue'
export default { export default {
components: {BundleNav},
name: 'bundles' name: 'bundles'
} }
</script> </script>
<style scoped>
</style>