I am in need of a custom formatter function for the b-form-spinbutton component that depends on my data. I want to pass an extra argument to the :formatter-fn property in the code snippet below, but it is not working as expected.
<b-form-spinbutton :formatter-fn='dividerFormatter(data.index, $event)'></b-form-spinbutton>
According to the documentation:
'formatter-fn Function A reference to a method to format the displayed value. It is passed a single argument which is the current value'
Is there a way to pass additional parameters to this function?