xdrm.io/src/App.vue

42 lines
592 B
Vue
Raw Normal View History

2019-05-07 17:10:48 +00:00
<template>
<div id="app">
<Home/>
<Skills/>
</div>
2019-05-07 17:10:48 +00:00
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import Home from './components/Home.vue';
import Skills from './components/Skills.vue';
2019-05-07 17:10:48 +00:00
@Component({
components: {
Home,
Skills,
},
2019-05-07 17:10:48 +00:00
})
export default class App extends Vue {
}
2019-05-07 17:10:48 +00:00
</script>
<style lang="scss">
#app {
display: flex;
position: absolute;
top: 0;
left: 0;
width: 100%;
2019-05-09 16:56:46 +00:00
min-height: 100%;
height: auto;
padding-bottom: 4vw;
flex-flow: column nowrap;
overflow: hidden;
background: #fff;
}
2019-05-07 17:10:48 +00:00
</style>