Convert most code to ts

This commit is contained in:
2022-01-31 21:14:13 +00:00
parent 27508af3a7
commit 7cba471de7
12 changed files with 95 additions and 69 deletions

View File

@@ -1,8 +1,9 @@
<script>
<script lang="ts">
import { TITLE } from "../store/mutation-types";
import { LOGIN } from '../store/action-types'
import { defineComponent } from "vue";
export default {
export default defineComponent({
data() {
return {
error: [],
@@ -30,7 +31,7 @@ export default {
// TODO redirect to dashboard on success
}
}
}
})
</script>
<template>