
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
sonata-vue-forms
Advanced tools
Base form components for Vue 3 and Sonata CSS.
npm install sonata-vue-forms --save
For Vue 2 use sonata-vue-forms@0.2.2
import BaseForm from 'sonata-vue-forms';
Vue.use(BaseForm);
The BaseForm component uses Axios to submit the data. You can provide Axios configuration for the request as the second parameter:
import BaseForm from 'sonata-vue-forms';
Vue.use(BaseForm, {
headers: {'X-CSRF-TOKEN': yourToken},
withCredentials: true
});
After registering, all components will be available for use:
<base-form action="/example" v-slot="{fields}">
<div>
<form-control
v-model="fields.username"
name="username"
label="Username"
></form-control>
<form-control
v-model="fields.password"
name="password"
label="Password"
type="password"
></form-control>
<form-control
v-model="fields.remember"
name="remember"
label="Remember me"
type="checkbox"
></form-control>
<div class="text-center">
<form-button></form-button>
</div>
</div>
</base-form>
FAQs
Base form components for Vue.js and Sonata CSS.
We found that sonata-vue-forms demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.