You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaf/src/views/Home.vue

26 lines
343 B
Vue

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