Vue 2.x lightweight string manipulation filter
https://mazipan.github.io/vue-string-filter/
uppercaselowercasecapitalizetitlecaseslugtruncatecut
# NPM
npm install vue-string-filter
# Yarn
yarn add vue-string-filterimport VueStringFilter from 'vue-string-filter'
Vue.use(VueStringFilter)<span>{{ stringWillFormatted | uppercase }}</span>
<span>{{ stringWillFormatted | lowercase }}</span>
<span>{{ stringWillFormatted | capitalize }}</span>
<span>{{ stringWillFormatted | titlecase }}</span>
<span>{{ stringWillFormatted | slug }}</span>
<span>{{ stringWillFormatted | truncate(10) }}</span>
<span>{{ stringWillFormatted | cut(10) }}</span>If you'd like to contribute, head to the contributing guidelines. Inside you'll find directions for opening issues, coding standards, and notes on development.
Copyright © 2018 Built with ❤️ by Irfan Maulana