mirror of
https://github.com/KevinMidboe/planetposen.git
synced 2025-10-29 09:40:31 +00:00
23 lines
364 B
Vue
23 lines
364 B
Vue
<template>
|
|
<div>
|
|
<Navigation></Navigation>
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navigation from '@/components/Navigation';
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: { Navigation }
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import './styles/normalize';
|
|
@import './styles/icons';
|
|
@import './styles/global';
|
|
@import './styles/layout';
|
|
</style>
|