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 d8f2d4e commit 734a100Copy full SHA for 734a100
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-numeric",
3
- "version": "1.3.0",
+ "version": "1.3.1",
4
"description": "Input field component to display currency value based on Vue.",
5
"author": "Kevin Ongko",
6
"main": "src/vue-numeric.vue",
src/vue-numeric.vue
@@ -228,6 +228,10 @@ export default {
228
'default' (val, old) {
229
this.processValue(this.defaultValue)
230
}
231
+ },
232
+
233
+ mounted () {
234
+ if (this.defaultValue) this.processValue(this.defaultValue)
235
236
237
</script>
0 commit comments