UNPKG

vue-formulate-currency

Version:
24 lines (22 loc) 543 B
import FormulateVueCurrency from "./FormulateVueCurrency"; export default function FormulateVueCurrencyPlugin(formulateInstance) { formulateInstance.extend({ components: { FormulateVueCurrency, }, library: { currency: { classification: "text", component: "FormulateVueCurrency", }, }, rules: { min: ({ value }, minVal) => { return value >= minVal; }, max: ({ value }, maxVal) => { return value <= maxVal; }, }, }); }