1.3.2 • Published 1 year ago

custom-format-input-vue v1.3.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Custom Format Input Vue

Quick Installation with NPM

Installation

  1. Prepare Your Environment: Make sure Node.js and NPM are installed on your machine. Download and install from here.

  2. Install Custom Format Input Vue: Use the NPM command to install.

    npm install custom-format-input-vue

Usage

  1. 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);
  2. 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 syahrilanwar.dev@gmail.com for questions or feedback.

1.3.2

1 year ago

1.3.1

1 year ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.3.0

1 year ago

1.2.0

1 year ago

1.2.1

1 year ago

1.1.1

1 year ago

1.0.2

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.0.0

1 year ago