Tracking de l'application VApp (IHM du jeu)

This commit is contained in:
2025-05-11 18:04:12 +02:00
commit 89e9db9b62
17763 changed files with 3718499 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
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