Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.