2.0.8 • Published 3 years ago

vue-input-formatter v2.0.8

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

Vue Input Formatter

Demo

npm.io

Installation

Using npm:

$ npm i vue-input-formatter

Usage

<script setup lang="ts">
import { VueInputFormatter } from "vue-input-formatter";
import { ref } from "vue";

const testModel = ref<number>(0);

function increase() {
  testModel.value += 1;
}
</script>

<template>
  <VueNumberInput v-model="testModel" />
  <div>{{ testModel }}</div>
  <div>
    <button @click="testModel = 1000">Set to 1000</button>
    <button @click="increase">Increase</button>
  </div>
</template>
2.0.8

3 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago