Socket
Socket
Sign inDemoInstall

@chenfengyuan/vue-number-input

Package Overview
Dependencies
21
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @chenfengyuan/vue-number-input

Number input component for Vue 3.


Version published
Weekly downloads
4.8K
increased by6.53%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

2.0.1 (2022-02-13)

Bug Fixes

  • round the normalized new value (30aaa6a), closes #32

Readme

Source

vue-number-input

Coverage Status Downloads Version Gzip Size

Number input component for Vue 3. For Vue 2, check out the v1 branch.

Main files

dist/
├── vue-number-input.js         (UMD, default)
├── vue-number-input.min.js     (UMD, compressed)
├── vue-number-input.esm.js     (ECMAScript Module)
├── vue-number-input.esm.min.js (ECMAScript Module, compressed)
└── vue-number-input.d.ts       (TypeScript Declaration File)

Getting started

Installation

Using npm:

npm install vue@3 @chenfengyuan/vue-number-input@2

Using pnpm:

pnpm add vue@3 @chenfengyuan/vue-number-input@2

Using Yarn:

yarn add vue@3 @chenfengyuan/vue-number-input@2

Using CDN:

<script src="https://unpkg.com/vue@3"></script><!-- Vue.js is required -->
<script src="https://unpkg.com/@chenfengyuan/vue-number-input@2"></script>

Usage

import { createApp } from 'vue';
import VueNumberInput from '@chenfengyuan/vue-number-input';

const app = createApp({});

app.component(VueNumberInput.name, VueNumberInput);
<vue-number-input controls></vue-number-input>

Browser support

Same as Vue 3.

Versioning

Maintained under the Semantic Versioning guidelines.

License

MIT © Chen Fengyuan

Keywords

FAQs

Last updated on 13 Feb 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc