fix: type

This commit is contained in:
kolaente 2021-12-20 18:32:32 +01:00
parent 9c4585bf1d
commit 92238df2d5
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 3 deletions

View File

@ -80,7 +80,7 @@ import CaldavTokenModel from '@/models/caldavToken'
const service = new CaldavTokenService()
async function useToken() {
async function useToken(): ref<CaldavTokenModel[]> {
const tokens = ref<CaldavTokenModel[]>([])
tokens.value = await service.getAll()
return tokens
@ -108,9 +108,7 @@ const createToken = async () => {
const deleteToken = async (token: CaldavTokenModel) => {
const r = await service.delete(token)
success(r)
// @ts-ignore
const i = tokens.value.findIndex(v => v.id === token.id)
// @ts-ignore
tokens.value.splice(i, 1)
}
</script>