How to use vue custom filters

php中世界最好的语言
Release: 2018-06-02 10:17:11
Original
1556 people have browsed it

This time I will show you how to use vue custom filtersFilter, what are theprecautionsfor using vue custom filters, the following is a practical case, let's go together take a look.

Officially given

Vue.filters(id , [definition]) //id {string} //definition {function}
Copy after login

View details

If we have multiple filters in the project, how can I register them at once and make them available globally? We create a new filter in the project folder, as follows, index.js is the export file, readMore is a filter that processesstring

File directory

Paste the code below:

//index.js // 引入所有的过滤函数 import readMore from './readMore'; // 导出在一个对象上 export default { readMore }; //readMore.js //查看更多文字显示'...' let readMore = (text,length,suffix) => { if(text) { if(text.length <= length) return text; return text.substring(0,length) + suffix; } return text; }; export default readMore;
Copy after login

Then do the following processing in main.js:

main. js does global registration

//全局注册自定义的过滤器 import filters from './filters'; for(let key in filters){ Vue.filter(key, (val,value1,value2) => { return filters[key](val,value1,value2); }); }
Copy after login

and you can use it globally

//在test.vue里面使用 

#{{'文字文字' | readMore(15,'...')}}#
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

How to use filter in vue

##How to use vue to determine the class of dom

The above is the detailed content of How to use vue custom filters. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!