Gridsome is a Vue.js powered framework for building static generated websites & apps.
Start collecting data in a matter of clicks.
Let Formspark take care of the servers, databases, and analytics.
Set up any form in seconds.
Out of the box Vue support
Compatible with Jamstack
<template> <form method="POST" :action="formActionUrl"> <textarea name="message" placeholder="Message" /> <button type="submit">Send</button> </form> </template> <script> export default { metaInfo: { title: "Contact", }, data() { return { formActionUrl: "https://submit-form.com/your-form-id", }; }, }; </script>