36 lines
630 B
Vue
36 lines
630 B
Vue
|
<template>
|
||
|
<div class="App">
|
||
|
<h1>MyApp</h1>
|
||
|
<navigation :items="navigationItems"></navigation>
|
||
|
<transition name="component-fade" mode="out-in">
|
||
|
<router-view></router-view>
|
||
|
</transition>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
import Navigation from './components/navigation.vue';
|
||
|
|
||
|
export default {
|
||
|
name: "App",
|
||
|
components: {
|
||
|
Navigation
|
||
|
},
|
||
|
props: {
|
||
|
navigationItems: {
|
||
|
type: Array,
|
||
|
default() {
|
||
|
return [ ];
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
}
|
||
|
}
|
||
|
</script>
|