You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found solution for this issue. You can add @submit.prevent="handleSubmit" on your form which will prevent page reload issue on clicking next or prev month.
<template>
<form @submit.prevent="handleSubmit">
<!-- Your form fields go here -->
<button type="submit">Submit</button>
</form>
</template>
<script>
export default {
methods: {
handleSubmit() {
// Your form submission logic goes here
}
}
};
</script>
No description provided.
The text was updated successfully, but these errors were encountered: