vue-numeric

Input field component to display a formatted currency value based on Vue.js

Github星跟踪图

vue-numeric

npm
npm
npm
Build Status
Codecov
npm

Input field component to display a formatted currency value based on Vue.

Live Demo

Works with Vue 2.*

Installation

Install via CDN

<script src="https://unpkg.com/accounting-js"></script>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-numeric"></script>

<script>
  Vue.use(VueNumeric.default)
</script>

Install via NPM

$ npm install vue-numeric --save

Register as Component

import Vue from 'vue'
import VueNumeric from 'vue-numeric'

export default {
  name: 'App',

  components: {
    VueNumeric
  }
}

Register as Plugin

import Vue from 'vue'
import VueNumeric from 'vue-numeric'

Vue.use(VueNumeric)

Usage

screen shot 2016-12-08 at 2 19 31 pm

Quick example

<template>
  <vue-numeric currency="$" separator="," v-model="price"></vue-numeric>
</template>

<script>
import VueNumeric from 'vue-numeric'

export default {
  name: 'App',

  components: {
    VueNumeric
  },

  data: () => ({
    price: ''
  }),
}
</script>

Currency symbol

Set the currency prop to add a currency symbol within the input.

<vue-numeric currency="$"></vue-numeric>

Minimum & maximum constraint

Limit the minimum and maximum value by using min and max props.

  • min defaults to 0.
  • min and max accept String or Number values.
<vue-numeric v-bind:min="2000" v-bind:max="10000"></vue-numeric>

Disable/enable negative values

minus defaults to false (no negative numbers).

<vue-numeric v-bind:minus="false"></vue-numeric>

Enable decimal precision

By default the decimal value is disabled. To use decimals in the value, add the precision prop.

  • precision accept a String or Number numeric value.
<vue-numeric v-bind:precision="2"></vue-numeric>

Thousands separator

  • Default thousand separator's symbol is ,.
  • Use the separator prop to change the thousands separator.
  • separator only accepts space, , or ..
  • When using the . or space as thousand separator, the decimal separator will be ,.
<vue-numeric separator="."></vue-numeric>

Input placeholder when empty

<vue-numeric placeholder="only number allowed"></vue-numeric>

Value when empty

By default, when you clean the input the value is set to 0. You can change this value to fit your needs.

<vue-numeric :empty-value="1"></vue-numeric>

Output Type

By default the value emitted for the input event is of type Number. However you may choose to get a String instead
by setting the property output-type to String.

<vue-numeric output-type="String"></vue-numeric>

Props, Props, Description, Required, Type, Default, -----, -----------, --------, ----, -------, currency, Currency prefix, false, String, -, currency-symbol-position, Position of the symbol (accepted values: prefix or suffix), false, String, prefix, max, Maximum value allowed, false, Number, 9007199254740991, min, Minimum value allowed, false, Number, -9007199254740991, minus, Enable/disable negative values, false, Boolean, false, placeholder, Input placeholder, false, String, -, empty-value, Value when input is empty, false, Number, output-type, Output Type for input event, false, String, String, precision, Number of decimals, false, Number, -, separator, Thousand separator symbol (accepts space, . or ,), false, String, ,, decimal-separator, Custom decimal separator, false, String, -, thousand-separator, Custom thousand separator, false, String, -, read-only, Hide input field and show the value as text, false, Boolean, false, read-only-class, Class for read-only element, false, String, '', ## License

Vue-Numeric is open-sourced software licensed under the MIT license

Support

Hello, I'm Kevin the maintainer of this project in my free time (which is getting lessen these days), if this project does help you in any way please consider to support me. Thanks :smiley:

主要指标

概览
名称与所有者danhper/structomap
主编程语言Go
编程语言Vue (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2015-05-13 08:54:11
推送于2019-05-24 14:07:40
最后一次提交2019-05-16 14:45:22
发布数9
最新版本名称v0.6.2 (发布于 )
第一版名称v0.1.0 (发布于 )
用户参与
星数144
关注者数7
派生数11
提交数32
已启用问题?
问题数2
打开的问题数0
拉请求数2
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?