Skip to content

Commit 54e4f49

Browse files
authored
fix typo & eslint fix
1 parent 7a323f5 commit 54e4f49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vue-numeric.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default {
113113
* Symbol position props accept either 'sufix' or 'prefix' (default).
114114
*/
115115
currencySymbolPosition: {
116-
default: "prefix",
116+
default: 'prefix',
117117
required: false,
118118
type: String
119119
}
@@ -181,7 +181,7 @@ export default {
181181
* @return {String} format
182182
*/
183183
formatString () {
184-
return this.currencySymbolPosition === 'sufix' ? '%v %s' : '%s %v';
184+
return this.currencySymbolPosition === 'suffix' ? '%v %s' : '%s %v'
185185
}
186186
},
187187

0 commit comments

Comments
 (0)