ftxDialog
Shows a custom dialog component.
Parameters
options(Object) - Dialog optionscomponent(Component) - Vue component to displaycomponentProps(Object) - Props to pass to componentpersistent(Boolean) - Prevent dismissal on backdrop click- Other Quasar Dialog options
Returns
Dialog instance
Usage
javascript
import { ftxDialog } from '@ftx/ui';
import MyCustomDialog from './MyCustomDialog.vue';
ftxDialog({
component: MyCustomDialog,
componentProps: {
title: 'Custom Dialog',
data: someData
}
});