Vue implements the digital thousands separator format globally

Vue implements the digital thousands separator format globally

This article example shares the specific code for Vue to globally implement the digital thousands separator format for your reference. The specific content is as follows

What does this mean? When we need to render data on the page, for example, 88888, we need to display it in a format that is easy to read, 88,888, according to the thousandths.

At this time, what I do is to write a filter in vue and filter all the data with this filter.

Because the data involved is relatively large, I mounted this filter globally so that it does not need to be referenced on each page.

Conversion code implementation

First, create a file numberToCurrency.js to implement the conversion function of the thousand separator of numbers.

export function numberToCurrencyNo(value) {
  if (!value) return 0
  // Get the integer part const intPart = Math.trunc(value)
  // Integer part processing, increase,
  const intPartFormat = intPart.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,')
  // Predefined decimal part let floatPart = ''
  //Truncate the value into decimal and integer parts const valueArray = value.toString().split('.')
  if (valueArray.length === 2) { // There is a decimal part floatPart = valueArray[1].toString() // Get the decimal part return intPartFormat + '.' + floatPart
  }
  return intPartFormat + floatPart
}

Okay, this is achieved. Of course, if there are other requirements, the specific conversion code needs to be modified according to the actual situation.

Next comes the citation.

Reference mount global

Import the filter file just now into the main.js file and mount it globally.

import { numberToCurrencyNo } from '@/utils/numberToCurrency'
// Configure the global filter to implement the digital thousandths format Vue.filter('numberToCurrency', numberToCurrencyNo)

That's it, and then you can use it where you need to convert.

use

If you use it, it is the same as the normal filter.

<p class="num color1">{{riskAll| numberToCurrency}}</p>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Summary of Vue interpolation, expression, separator, and instruction knowledge

<<:  Detailed explanation of putting common nginx commands into shell scripts

>>:  XHTML Tutorial: The Difference Between Transitional and Strict

Recommend

About the problem of dynamic splicing src image address of img in Vue

Let's take a look at the dynamic splicing of ...

Basic usage tutorial of MySQL slow query log

Slow query log related parameters MySQL slow quer...

Sample code for easily implementing page layout using flex layout

Without further ado, let's get straight to th...

Solution to the garbled code problem in MySQL 5.x

MySQL is a commonly used open source database sof...

Summarize the problems encountered in using Vue Element UI

Table of contents 1. DateTimePicker date selectio...

Using CSS3 to create header animation effects

Netease Kanyouxi official website (http://kanyoux...

Detailed explanation of Linux DMA interface knowledge points

1. Two types of DMA mapping 1.1. Consistent DMA m...

When to use Map instead of plain JS objects

Table of contents 1. Map accepts any type of key ...

In-depth understanding of Vue-cli4 routing configuration

Table of contents Preface - Vue Routing 1. The mo...

How to use IDEA to configure tomcat and create JSP files

Before using idea to write JSP files, you need to...

Analysis of the Poor Performance Caused by Large Offset of LIMIT in MySQL Query

Preface We all know that MySQL query uses the sel...

What does this.parentNode.parentNode (parent node of parent node) mean?

The parent node of the parent node, for example, t...

A brief analysis of the four import methods and priorities in CSS

First: 4 ways to introduce CSS There are four way...