We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c2207f commit 9ea7948Copy full SHA for 9ea7948
README.md
@@ -264,6 +264,7 @@ export default {
264
265
+ Arguments:
266
* `{Number} [decimalDigits] - default: 0`
267
+ * `{Number} [multiplier] - default: 100`
268
269
+ Examples:
270
@@ -281,6 +282,12 @@ export default {
281
282
{{ 0.974878234 | percent(3) }} // => 97.488%
283
```
284
285
+ Change the multiplier:
286
+
287
+ ```js
288
+ {{ 0.974878234 | percent(3, 150) }} // => 146.232%
289
+ ```
290
291
#### currency
292
293
@@ -518,7 +525,8 @@ var Vue2FiltersConfig = {
518
525
decimalDigits: 2
519
526
},
520
527
percent: {
521
- decimalDigits: 2
528
+ decimalDigits: 2,
529
+ multiplier: 100
522
530
523
531
currency: {
524
532
symbol: '$',
0 commit comments