Package Exports
- @chenfengyuan/vue-number-input
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@chenfengyuan/vue-number-input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-number-input
Number input component for Vue.js.
Main
dist/
├── vue-number-input.js (UMD)
├── vue-number-input.min.js (UMD, compressed)
├── vue-number-input.common.js (CommonJS, default)
└── vue-number-input.esm.js (ES Module)
Getting started
Installation
npm install @chenfengyuan/vue-number-input vue
In browser:
<script src="/path/to/vue.js"></script>
<script src="/path/to/vue-number-input.js"></script>
Usage
import Vue from 'vue';
import VueNumberInput from '@chenfengyuan/vue-number-input';
Vue.component(VueNumberInput.name, VueNumberInput);
<number-input controls></number-input>
In browser:
<script>Vue.component(VueNumberInput.name, VueNumberInput);</script>
Browser support
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Opera (latest)
- Edge (latest)
- Internet Explorer 9+
Contributing
Please read through our contributing guidelines.
Versioning
Maintained under the Semantic Versioning guidelines.