Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@igortrindade/vue-number-format
Advanced tools
A lightweight flexible Vue.js 2 and 3 component to display and input formatted numbers and currencies
A lightweight flexible Vue.js 2 and 3 component to display and input formatted numbers and currencies
Install npm module:
yarn add vue-number-format
or
npm i -S vue-number-format
import { createApp } from 'vue'
import App from './App.vue'
import VueNumberFormat from 'vue-number-format'
const app = createApp(App)
app.use(VueNumberFormat, {prefix: 'US$ ', decimal: ',', thousand: '.'})
app.mount('#app')
// plugins/index.ts
import VueNumberFormat from '@igortrindade/vue-number-format'
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(VueNumberFormat, { prefix: 'R$ ', decimal: '.', thounsand: ',' })
})
import Vue from 'vue'
import App from './App.vue'
import VueNumberFormat from 'vue-number-format'
Vue.use(VueNumberFormat, {prefix: 'R$ ', decimal: ',', thousand: '.'})
new Vue({
render: h => h(App),
}).$mount('#app')
<!-- VUE 3 -->
<VueNumberFormat
v-model:value="value"
:options="{ precision: 3, prefix: '', suffix: ' kg', decimal: '', thousand: '', acceptNegative: false, isInteger: false }"
></VueNumberFormat>
<!-- https://v3.vuejs.org/guide/component-custom-events.html#v-model-arguments -->
<!-- VUE 2 -->
<VueNumberFormat
v-model="value"
:options="{ precision: 3, prefix: '', suffix: ' kg', decimal: '', thousand: '', acceptNegative: false, isInteger: false }"
></VueNumberFormat>
{{vueNumberFormat(275, {})}}
<!-- display US$275.00 -->
<!-- Available only within global instalation -->
<!-- use like a component method -->
<!-- Filters are removed from Vue 3.0 and no longer supported: https://v3.vuejs.org/guide/migration/filters.html-->
This is the default package options, feel free to change for anything you need
{
prefix: 'US$ ',
suffix: '',
decimal: ',',
thousand: '.',
precision: 2,
acceptNegative: true,
isInteger: false
}
npm run test
This project is licensed under the MIT License - see the LICENSE file for details.
v1.1.0
v.1.3.0
Added support to Nuxt 3
FAQs
A lightweight flexible Vue.js 2 and 3 component to display and input formatted numbers and currencies
The npm package @igortrindade/vue-number-format receives a total of 72 weekly downloads. As such, @igortrindade/vue-number-format popularity was classified as not popular.
We found that @igortrindade/vue-number-format demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.