ifms-pti/web/src/views/UpdatePassword.vue
2022-07-01 11:11:26 +00:00

20 lines
421 B
Vue
Executable File

<template>
<v-container style="height: 90vh" fluid>
<v-row class="fill-height" justify="center">
<v-col style="max-width: 480px">
<UpdatePasswordForm />
</v-col>
</v-row>
</v-container>
</template>
<script>
import UpdatePasswordForm from '@/components/UpdatePasswordForm'
export default {
name: 'UpdatePassword',
components: { UpdatePasswordForm }
}
</script>
<style scoped></style>