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