
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
formkit-addon-inertia
Advanced tools
Plugin for integrating InertiaJS with FormKit
You can check out the full documentation here
There are two ways to use this addon, firstly there is the composable way, and there is also a formkit plugin.
In the end, the plugin uses the composable inside of it with the correct form node for easy of use.
npm i formkit-addon-inertia
The useInertia is a function that receives a FormKit node and returns all Inertia HTTP methods.
Those are visit, get, post, put, patch, delete and reload.
<script setup>
import { useInertia } from "formkit-addon-inertia";
</script>
<template>
<FormKit
type="form"
@submit="(fields, node) => useInertia(node).post('/user', fields)"
>
<FormKit type="text" name="name" label="Name" />
<FormKit type="email" name="email" label="E-mail" />
</FormKit>
</template>
The inertia context property has all Inertia HTTP methods.
Those are visit, get, post, put, patch, delete and reload.
<script setup>
import { plugin as inertiaPlugin } from "formkit-addon-inertia";
</script>
<template>
<FormKit
type="form"
:plugins="[inertiaPlugin]"
@submit="(fields, node) => node.context.inertia.post('/user', fields)"
>
<FormKit type="text" name="name" label="Name" />
<FormKit type="email" name="email" label="E-mail" />
</FormKit>
</template>
You can add this plugin as a global formkit plugin so every form has it, instead of defining manually like the example above
import { createApp } from "vue"; import App from "App.vue"; import { plugin, defaultConfig } from "@formkit/vue"; import { plugin as inertiaPlugin } from "formkit-addon-inertia"; createApp(App) .use(plugin, defaultConfig({ plugins: [inertiaPlugin] })) .mount("#app");
FAQs
A plugin for integrating InertiaJS with FormKit.
We found that formkit-addon-inertia demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.