✂️ Lightweight Vue 2 String Manipulation Filter
https://mazipan.github.io/vue-string-filter/
uppercase
lowercase
capitalize
titlecase
slug
truncate
cut
NPM :
npm install vue-string-filter
Yarn :
yarn add vue-string-filter
import 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.
Contact Me :