i am using form in Vuejs component template. i don't want to define full static URL. the page URL is like http://example.com/en/discusses and form should submit at http://example.com/comments. but using
<form action = "comments" method ="POST">
goes to http://example.com/en/comments instead of http://example.com/comments. How to achieve this?. Thank you in advance.
action="/comments"