Sousmargot/src/App.vue

18 lines
206 B
Vue
Raw Normal View History

2021-06-07 14:50:13 +00:00
<template>
2021-06-08 18:13:39 +00:00
<Nav></Nav>
2021-06-08 21:32:04 +00:00
<router-view></router-view>
2021-06-07 14:50:13 +00:00
</template>
<script>
2021-06-08 18:13:39 +00:00
import Nav from './components/nav.vue'
2021-06-07 14:50:13 +00:00
export default {
name: 'App',
components: {
2021-06-08 18:13:39 +00:00
Nav
2021-06-07 14:50:13 +00:00
}
}
</script>
2021-06-08 18:13:39 +00:00
<style></style>