UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

30 lines 643 B
import { defineComponent } from 'vue'; /** * Slot for default container content * @name default * @kind slot */ const componentName = 'IContainer'; export default defineComponent({ name: componentName, props: { /** * Display the container as fluid, always spanning 100% width * @type Boolean * @default false * @name fluid */ fluid: { type: Boolean, default: false } }, computed: { classes() { return { '-fluid': this.fluid }; } } }); //# sourceMappingURL=script.mjs.map