Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
38
VApp/node_modules/vuetify/lib/components/VLayout/VLayout.mjs
generated
vendored
Normal file
38
VApp/node_modules/vuetify/lib/components/VLayout/VLayout.mjs
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user