2.0.8 • Published 1 year ago

vue-input-formatter v2.0.8

Weekly downloads
-
License
-
Repository
github
Last release
1 year 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

1 year ago

2.0.7

1 year ago

2.0.6

1 year ago

2.0.5

1 year ago

2.0.4

1 year ago

2.0.3

1 year ago

2.0.2

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago