3.2.7 • Published 6 months ago

comma-format-package v3.2.7

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

Installation

NPM

JavaScript Comma supports npm under the name comma-format-package.

npm i comma-format-package

Usage

// Basic Use - comma format
import addComma  from "comma-format-package";

## Examples
```js 3
<template>
  <div id="app">
    <div v-html="formatComma"></div>
  </div>
</template>

<script>
import { defineComponent, ref } from 'vue'
import addComma  from "comma-format-package";

export default defineComponent({
  setup() {
    const number = ref(10000000)
    const formatComma = ref(null)
    formatComma.value = addComma(number.value)
    return {
      formatComma
    };
  }
})
</script>
3.2.7

6 months ago

3.2.6

7 months ago

3.2.5

7 months ago

3.2.4

7 months ago

3.2.3

7 months ago

3.2.2

7 months ago

3.2.1

7 months ago

3.2.0

7 months ago

3.1.1

7 months ago

3.1.0

7 months ago

3.0.1

7 months ago

3.0.0

7 months ago

2.0.0

7 months ago

1.0.0

7 months ago