xdrm.io/src/App.vue

43 lines
667 B
Vue
Raw Normal View History

2019-05-07 17:10:48 +00:00
<template>
<div id="app">
<Banner/>
<Skills/>
2022-08-21 08:42:03 +00:00
<Experiences/>
</div>
2019-05-07 17:10:48 +00:00
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import Banner from './components/Banner.vue';
import Skills from './components/Skills.vue';
2022-08-21 08:42:03 +00:00
import Experiences from './components/Experiences.vue';
2019-05-07 17:10:48 +00:00
@Component({
components: {
Banner,
Skills,
2022-08-21 08:42:03 +00:00
Experiences,
},
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;
}
2019-05-07 17:10:48 +00:00
</style>