UNPKG

@gitlab/ui

Version:
24 lines (18 loc) 398 B
import { extend } from '../vue'; import { PROP_TYPE_BOOLEAN } from '../constants/props'; import { makeProp } from '../utils/props'; // --- Props --- const props = { plain: makeProp(PROP_TYPE_BOOLEAN, false) }; // --- Mixin --- // @vue/component const formCustomMixin = extend({ props, computed: { custom() { return !this.plain; } } }); export { formCustomMixin, props };