dashy/src/App.vue

29 lines
341 B
Vue
Raw Normal View History

2019-07-19 16:07:26 +02:00
<template>
<div id="app">
<router-view/>
2019-07-20 22:50:29 +02:00
<Footer />
2019-07-19 16:07:26 +02:00
</div>
</template>
2019-07-20 22:50:29 +02:00
<script>
2019-09-01 14:38:13 +02:00
import Footer from '@/components/Footer.vue';
2019-07-20 22:50:29 +02:00
export default {
name: 'app',
components: {
2019-09-01 14:38:13 +02:00
Footer,
},
};
2019-07-20 22:50:29 +02:00
</script>
2019-07-19 16:07:26 +02:00
<style lang="scss">
2019-07-20 22:50:29 +02:00
@import url('../src/global-styles.scss');
2019-07-19 16:07:26 +02:00
#app {
2019-07-20 22:50:29 +02:00
.footer {
text-align: center;
2019-07-19 16:07:26 +02:00
}
}
2019-07-20 22:50:29 +02:00
2019-07-19 16:07:26 +02:00
</style>