UNPKG

vuetify

Version:

Vue Material Component Framework

29 lines (27 loc) 600 B
// @ts-nocheck /* eslint-disable */ import "./VBottomSheet.css"; // Extensions import VDialog from "../VDialog/VDialog.mjs"; /* @vue/component */ export default VDialog.extend({ name: 'v-bottom-sheet', props: { inset: Boolean, maxWidth: [String, Number], transition: { type: String, default: 'bottom-sheet-transition' } }, computed: { classes() { return { ...VDialog.options.computed.classes.call(this), 'v-bottom-sheet': true, 'v-bottom-sheet--inset': this.inset }; } } }); //# sourceMappingURL=VBottomSheet.mjs.map