comptes/src/App.vue

32 lines
438 B
Vue
Raw Normal View History

2018-11-30 07:02:54 +00:00
<template>
<div id="app">
<navbar></navbar>
2018-11-30 11:07:39 +00:00
<div id="content">
<router-view/>
</div>
2018-11-30 07:02:54 +00:00
</div>
</template>
<script>
import navbar from './components/navbar'
export default {
name: 'app',
components: {
'navbar': navbar
},
mounted: function () {
this.$store.dispatch('config/load')
2019-01-21 10:41:47 +00:00
this.$store.dispatch('datas/load_csvs')
2018-11-30 07:02:54 +00:00
}
}
</script>
<style>
#app {
}
2018-11-30 11:07:39 +00:00
#content {
padding: 5rem;
}
2018-11-30 07:02:54 +00:00
</style>