UNPKG

@inkline/inkline

Version:

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

28 lines 607 B
import { defineComponent } from 'vue'; /** * Slot for default layout content * @name default * @kind slot */ const componentName = 'ILayout'; export default defineComponent({ name: componentName, props: { /** * Display the layout on a vertical orientation * @type Boolean * @default false * @name vertical */ vertical: { type: Boolean, default: false } }, computed: { classes() { return { '-vertical': this.vertical }; } } }); //# sourceMappingURL=script.mjs.map