Skip to content

Commit 0fd4459

Browse files
committed
updated docs
1 parent 25b6aca commit 0fd4459

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
docs
22
dist
3-
examples

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ node_modules
1414
.temp
1515
.cache
1616
example*
17+
*.bak

docs/.vuepress/components/PlayGround.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
:value="priceDirective"
2626
v-number="config"
2727
type="text"
28-
@change="({target})=>priceDirective=target.value"
28+
@change="({ target }) => (priceDirective = target.value)"
2929
@input="onInput"
3030
@focus="onFocus"
3131
@blur="onBlur"
@@ -145,14 +145,14 @@ export default {
145145
price: 1234.567,
146146
priceDirective: 1234.567,
147147
config: {
148-
decimal: '.',
149-
separator: ',',
150-
prefix: '$',
148+
decimal: ',',
149+
separator: '.',
150+
prefix: 'Rs.',
151151
suffix: '',
152152
precision: 2,
153153
nullValue: '',
154154
masked: false,
155-
reverseFill: false
155+
reverseFill: true
156156
}
157157
}
158158
},

0 commit comments

Comments
 (0)