26 lines
343 B
Vue
26 lines
343 B
Vue
<style>
|
|
.home {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<template>
|
|
<div class='home d-flex justify-center align-center'>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
import {Component, Vue} from 'vue-property-decorator'
|
|
|
|
@Component({
|
|
components: {}
|
|
})
|
|
export default class Home extends Vue {
|
|
mounted() {
|
|
}
|
|
|
|
created() {
|
|
}
|
|
}
|
|
</script>
|