From dee541684b8e7fbdc8dc8503c9cf01572468227b Mon Sep 17 00:00:00 2001 From: Alexander Shabunevich Date: Fri, 16 Dec 2022 17:56:02 +0300 Subject: [PATCH] Add example with simple money format --- src/demo/Demo.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/demo/Demo.vue b/src/demo/Demo.vue index eb7b6f4..39a970c 100644 --- a/src/demo/Demo.vue +++ b/src/demo/Demo.vue @@ -38,7 +38,11 @@ const examples = [ code: `const options = {\n postProcess: (val) => {\n const max = "" + new Date().getFullYear()\n return val > max ? max : val\n }\n}\n\n` }, { - label: 'Money format: repeated and reversed', + label: 'Money format simple', + code: `` + }, + { + label: 'Money format with thousand separators', code: `` } ]