vuenos-input-money
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

vuenos-input-money

description

Prerequisites

This project using NodeJS (version 16.10.0 or later) and NPM. Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.

$ npm -v && node -v
7.24.0
v16.10.0

Table of contents

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Installation

To install and set up the library, run:

npm install vuenos-input-money

Usage

Import component

<VuenosInputMoney ref="InputMoneyRef"
                  @getValue="getMoneyVal"
                  @blur="blurInput"
                  :placeholder="'Số tiền'"
                  :suffix="'VNĐ'"
                  :maxLength="14"
                  :disabled="true"
                  :error="true"
                  :showText="true">
</VuenosInputMoney>
import VuenosInputMoney from "vuenos-input-money";

Get value input

const getMoneyVal = (val) => {
    console.log(val);
}

Set value input

const InputMoneyRef = ref<null | { setInput: (val) => null }>(null)
const setInputMoneyVal = (val) => {
    InputMoneyRef.value?.setInput(val)
}
return {
    InputMoneyRef
}

Trigger blur action

const blurInput = async () => {
    //do something
}

Variables binding

ATTRIBUTE DESCRIPTION REQUIRED TYPE ACCEPTED VALUES DEFAULT
placeholder placeholder of input String 'Số tiền' empty
suffix suffix of input String 'VNĐ' empty
maxLength maxlength of input Number 14 empty
showText show convert number to text Boolean true/false false
disabled disable input Boolean true/false false
error error style input Boolean true/false empty

Versioning

v1.0.3

Author

Package Sidebar

Install

npm i vuenos-input-money

Weekly Downloads

1

Version

1.0.5

License

none

Unpacked Size

38.8 kB

Total Files

10

Last publish

Collaborators

  • biennui1998mu