Custom Data Filters For Vue.js 2+

This is a collection of useful custom filters for Vue.js apps.

Filters:

  • Boolean Formatter
  • Byte Formatter
  • Percentage Formatter
  • Timestamp Formatter

Usage:

const App = new Vue({
   el: '#app',
   // register filters
   filters: {
       booleanFormat: require('./filters/booleanFormatter'),
       percentageFormat: require('./filters/percentageFormatter'),
       byteFormat: require('./filters/byteFormatter'),
       timestampFormat: require('./filters/timestampFormatter')
   }
});

Preview:

Custom Filters For Vue.js 2+

Download Details:

Author: panteng

Live Demo: https://panteng.github.io/vue-filters-kit/

Download Link: https://github.com/panteng/vue-filters-kit/archive/master.zip

Official Website: https://github.com/panteng/vue-filters-kit

Install & Download:

Add Comment