Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit 27508af3a7 - Show all commits

View File

@ -1,13 +1,16 @@
<script> <script lang="ts">
import { defineComponent } from 'vue';
import { REGISTER } from "../store/action-types"; import { REGISTER } from "../store/action-types";
export default { export default defineComponent({
data() { data() {
return { return {
showPassword: false,
error: "",
login: { login: {
email: "", email: "",
password: "", password: "",
name: "" name: "",
} }
} }
}, },
@ -22,7 +25,7 @@ export default {
// TODO redirect to dashboard on success // TODO redirect to dashboard on success
} }
} }
} })
</script> </script>
<template> <template>