custom-format-input-vue
v1.3.2
Published
custom format input vue
Downloads
19
Readme
Custom Format Input Vue
Quick Installation with NPM
Installation
Prepare Your Environment: Make sure Node.js and NPM are installed on your machine. Download and install from here.
Install Custom Format Input Vue: Use the NPM command to install.
npm install custom-format-input-vue
Usage
Import Custom Format Input Vue: Import the Custom Format Input Vue into your project.
import Vue from "vue"; import CustomFormatInputVue from "custom-format-input-vue"; Vue.use(CustomFormatInputVue);
Use Components: Use the components you need in your project.
<template> <custom-format-input-vue :disabled="disabled" :value="value" :options="options" @update-value="updateValue" /> </template> <script> export default { data() { return { disabled: false, value: [], options: [ "Option 1", "Option 2", "Option 3", ], }; }, methods: { updateValue(newValue) { this.value = newValue; }, }, }; </script>
Contribution
See CONTRIBUTING.md for contribution guidelines.
License
Licensed under [ISC license]. See LICENSE.md for more details.
Contact
Reach out to me at [[email protected]] for questions or feedback.