38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
|
import { createVNode as _createVNode } from "vue";
|
||
|
// Styles
|
||
|
import "./VLayout.css";
|
||
|
|
||
|
// Composables
|
||
|
import { makeComponentProps } from "../../composables/component.mjs";
|
||
|
import { createLayout, makeLayoutProps } from "../../composables/layout.mjs"; // Utilities
|
||
|
import { genericComponent, propsFactory, useRender } from "../../util/index.mjs";
|
||
|
export const makeVLayoutProps = propsFactory({
|
||
|
...makeComponentProps(),
|
||
|
...makeLayoutProps()
|
||
|
}, 'VLayout');
|
||
|
export const VLayout = genericComponent()({
|
||
|
name: 'VLayout',
|
||
|
props: makeVLayoutProps(),
|
||
|
setup(props, _ref) {
|
||
|
let {
|
||
|
slots
|
||
|
} = _ref;
|
||
|
const {
|
||
|
layoutClasses,
|
||
|
layoutStyles,
|
||
|
getLayoutItem,
|
||
|
items,
|
||
|
layoutRef
|
||
|
} = createLayout(props);
|
||
|
useRender(() => _createVNode("div", {
|
||
|
"ref": layoutRef,
|
||
|
"class": [layoutClasses.value, props.class],
|
||
|
"style": [layoutStyles.value, props.style]
|
||
|
}, [slots.default?.()]));
|
||
|
return {
|
||
|
getLayoutItem,
|
||
|
items
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
//# sourceMappingURL=VLayout.mjs.map
|