vuetify-wcag
Version:
VuetifyJS but then WCAG/A11Y compatible
26 lines (23 loc) • 588 B
JavaScript
import "../../../src/components/VBottomSheet/VBottomSheet.sass"; // Extensions
import VDialog from '../VDialog/VDialog';
/* @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.js.map