You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
364 B
Vue
25 lines
364 B
Vue
<template>
|
|
<div id="app">
|
|
<Header></Header>
|
|
<router-view></router-view>
|
|
<Footer></Footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from '@/components/Header.vue'
|
|
import Footer from '@/components/Footer.vue'
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Header,
|
|
Footer
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'scss/main';
|
|
</style>
|