43 lines
629 B
Vue
43 lines
629 B
Vue
<template>
|
|
<div id="app">
|
|
<Home/>
|
|
<Timeline/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import Home from './components/Home.vue';
|
|
import Timeline from './components/Timeline.vue';
|
|
|
|
@Component({
|
|
components: {
|
|
Home,
|
|
Timeline,
|
|
},
|
|
})
|
|
export default class App extends Vue {
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
#app {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 100%;
|
|
height: auto;
|
|
|
|
|
|
font-size: 1rem;
|
|
font-family: 'Source Sans Pro';
|
|
flex-flow: column nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
background: #fff;
|
|
}
|
|
</style>
|