PrefaceHello everyone, today I will share some tips on filters in Vue. What is a filterVue.js allows you to define your own filters, which can be used for some common text formatting. Filters can be used in two places: double curly brace interpolation and v-bind expressions (the latter is supported since 2.1.0+). How to use filtersGlobal Filters
How to use //main.js Vue.filter("capitalize", function (value) { if (!value) return ""; return "¥" + value.toFixed(2) + "元"; }); Use within double curly braces <!-- home.vue --> <h1>Vue Filters</h1> <p>{{ price | capitalize }}</p> {{ 20.6664376486 | capitalize }} Use in v-bind <h1>Vue Filters</h1> <p :id="122 | capitalize"></p> Local filterNote here that when the global filter and the local filter have the same name, the local filter will be used. Local filters You can define local filters in a component's options: export default { name: 'index', data() { return { price: 1999 } }, filters: capitalize: function (value) { if (!value) return '' return '¥' + value.toFixed(2) + '元' } } } Filters can be connected in seriesIn this example, filterA is defined as a filter function that accepts a single argument. The value of the expression message is passed into the function as an argument. Then continue to call the filter function filterB, which is also defined to receive a single parameter, and pass the result of filterA to filterB. {{ message | filterA | filterB }} Notice: 1. When there are two filters with the same name, local and global, they will be called based on the proximity principle, that is, the local filter will be called before the global filter! 2. An expression can use multiple filters. Filters need to be separated by pipe characters "|". The execution order is from left to right SummarizeThis is the end of this article about the must-know knowledge about filters in Vue. For more relevant Vue filter knowledge, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: DOCTYPE type detailed introduction
>>: 10 performance configuration items that need to be adjusted after installing MySQL
Key Modifiers When listening for keyboard events,...
function 0. Display current time Command: select ...
123WORDPRESS.COM--HTML超文本标记语言速查手册<!-- --> !D...
1. Command Introduction The stat command is used ...
Table of contents Debounce Throttle Summarize Deb...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
Table of contents 1. Background 2. What is a virt...
In this article, I will explain the relevant cont...
<br />I have written two articles before, &q...
1. haslayout and bfc are IE-specific and standard ...
Before starting the main text, I will introduce s...
I encountered such a problem when doing the writte...
Before reading this article, I hope you have a ba...
This article shares the specific code for impleme...
Table of contents 1. Routing and page jump 2. Int...