UNPKG

643 BJavaScriptView Raw
1import { defineComponent } from 'vue';
2/**
3 * Slot for default container content
4 * @name default
5 * @kind slot
6 */
7const componentName = 'IContainer';
8export default defineComponent({
9 name: componentName,
10 props: {
11 /**
12 * Display the container as fluid, always spanning 100% width
13 * @type Boolean
14 * @default false
15 * @name fluid
16 */
17 fluid: {
18 type: Boolean,
19 default: false
20 }
21 },
22 computed: {
23 classes() {
24 return {
25 '-fluid': this.fluid
26 };
27 }
28 }
29});
30//# sourceMappingURL=script.mjs.map
\No newline at end of file