You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the options that i setup globally are no reflected, the configs remain with the default, wich is decimals = . and thousands = ,
The only way it worked correctly was setting up in my vue component, like: v-money={ prefix: "R$", decimal: ",", thousands: "." }
Has anyone had this problem? how to solve?
The text was updated successfully, but these errors were encountered:
I'm trying to use v-money globally as a directive, so i followed the documentation, and added the following snipet:
import money from 'v-money'; Vue.use(money, { prefix: "R$", decimal: ",", thousands: "." });
I can use the directive this way:
v-money={}
But the options that i setup globally are no reflected, the configs remain with the default, wich is decimals = . and thousands = ,
The only way it worked correctly was setting up in my vue component, like:
v-money={ prefix: "R$", decimal: ",", thousands: "." }
Has anyone had this problem? how to solve?
The text was updated successfully, but these errors were encountered: