Debugging Reset Password Form
User <script> import { ref, inject, onMounted } from "vue"; import { useForm, useField } from "vee-validate"; import { useAuthStore } from "@/stores/auth"; import { useRouter } from "vue-router"; import publicApi from "@/publicApi"; import SingleColumn from "@/layouts/SingleColumn.vue"; const authStore = useAuthStore(); const router = useRouter(); const apiUrl = inject<string>("apiUrl"); const showPassword = ref(false); const alertMessage […]