fix: lint
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-10-20 16:23:01 +02:00
parent e6f7ddc9ce
commit 643a5b6d7d
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 5 deletions

View File

@ -33,17 +33,12 @@
<script setup lang="ts">
import {ref, reactive} from 'vue'
import {useI18n} from 'vue-i18n'
import {useRouter} from 'vue-router'
import PasswordResetModel from '@/models/passwordReset'
import PasswordResetService from '@/services/passwordReset'
import Message from '@/components/misc/message.vue'
import Password from '@/components/input/password.vue'
const {t} = useI18n({useScope: 'global'})
const router = useRouter()
const credentials = reactive({
password: '',
})