We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8653de5 commit e59da5aCopy full SHA for e59da5a
src/vue-numeric.vue
@@ -248,11 +248,15 @@ export default {
248
watch: {
249
'default' (val, old) {
250
this.processValue(this.defaultValue)
251
+ this.formatValue(this.defaultValue)
252
}
253
},
254
255
mounted () {
- if (this.defaultValue) this.processValue(this.defaultValue)
256
+ if (this.defaultValue) {
257
+ this.processValue(this.defaultValue)
258
259
+ }
260
261
262
</script>
0 commit comments