quasar
Version:
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
12 lines (10 loc) • 335 B
JavaScript
import BottomSheet from '../components/dialog-bottom-sheet/BottomSheet.js'
import globalDialog from '../utils/private/global-dialog.js'
export default {
install ({ $q, parentApp }) {
$q.bottomSheet = globalDialog(BottomSheet, false, parentApp)
if (this.__installed !== true) {
this.create = $q.bottomSheet
}
}
}