I want to create my custom submit directive in vue:
<form @customsubmit="Save(model)">
<button type="submit">Submit</Button>
</form>
Unfortunately in vue 3 Save is auto-called when component is created. How I can prevent this from happening?