
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
@arfedulov/vue-form-persist
Advanced tools
A library which helps you creating persistent vue forms
This package provides a mixin which adds persist functionality to
vue forms. The mixin exposes persist()
method which you can call
in order to persist the component's data. The method is 1 second debounced
by default.
An example of basic usage:
<input v-model="username" type="text" name="username" @input="persist" />
import { persistorMixin } from "@arfedulov/vue-form-persist";
export default {
name: "DemoForm",
mixins: [persistorMixin(["username"])], // specify field names that going to be persisted
data() {
return {
username: "", // is persisted
someOtherField: "" // is not persisted
};
}
};
There are three possibilities of how to provide a persistence key:
persist-id
persistKey
option to persistorMixinname
is used as a persistence key)The key is chosen in the following priority: attribute, option, default.
An example of using more than one instances of the same component
using persist-id
attribute:
<demo-form persist-id="form1" />
<demo-form persist-id="form2" />
An example of using persistorMixin
with options:
export default {
// ...
mixins: [
persistorMixin(["username", "email", "address"], {
persistKey: "my-persist-id",
debounceTime: 500 // ms
})
],
// ...
}
FAQs
A library which helps you creating persistent vue forms
We found that @arfedulov/vue-form-persist 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
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.