|
1 | 1 | # :scissors: Vue String Filter |
2 | 2 |
|
3 | | -> Vue 2.x lightweight string manipulation filter |
| 3 | +> Lightweight Vue filter for string manipulation |
4 | 4 |
|
5 | 5 | [](https://github.com/mazipan/vue-string-filter)  [](https://www.npmjs.com/package/vue-string-filter) [](https://www.npmjs.com/package/vue-string-filter) [](https://travis-ci.org/mazipan/vue-string-filter) [](https://codecov.io/gh/mazipan/vue-string-filter) |
6 | 6 |
|
@@ -47,18 +47,18 @@ Vue.use(VueStringFilter) |
47 | 47 | ```javascript |
48 | 48 | import Vue from 'vue' |
49 | 49 |
|
50 | | -import append 'vue-string-filter/filters/append' |
51 | | -import capitalize 'vue-string-filter/filters/capitalize' |
52 | | -import cut 'vue-string-filter/filters/cut' |
53 | | -import lowercase 'vue-string-filter/filters/lowercase' |
54 | | -import remove_first 'vue-string-filter/filters/remove-first' |
55 | | -import remove 'vue-string-filter/filters/remove' |
56 | | -import replace_first 'vue-string-filter/filters/replace-first' |
57 | | -import replace 'vue-string-filter/filters/replace' |
58 | | -import slug 'vue-string-filter/filters/slug' |
59 | | -import titlecase 'vue-string-filter/filters/titlecase' |
60 | | -import truncate 'vue-string-filter/filters/truncate' |
61 | | -import uppercase 'vue-string-filter/filters/uppercase' |
| 50 | +import append 'vue-string-filter/libs/append' |
| 51 | +import capitalize 'vue-string-filter/libs/capitalize' |
| 52 | +import cut 'vue-string-filter/libs/cut' |
| 53 | +import lowercase 'vue-string-filter/libs/lowercase' |
| 54 | +import remove_first 'vue-string-filter/libs/remove-first' |
| 55 | +import remove 'vue-string-filter/libs/remove' |
| 56 | +import replace_first 'vue-string-filter/libs/replace-first' |
| 57 | +import replace 'vue-string-filter/libs/replace' |
| 58 | +import slug 'vue-string-filter/libs/slug' |
| 59 | +import titlecase 'vue-string-filter/libs/titlecase' |
| 60 | +import truncate 'vue-string-filter/libs/truncate' |
| 61 | +import uppercase 'vue-string-filter/libs/uppercase' |
62 | 62 |
|
63 | 63 | Vue.filter('cut', cut) |
64 | 64 | Vue.filter('lowercase', lowercase) |
|
0 commit comments