routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+43
@@ -0,0 +1,43 @@
|
||||
import { W as createBaseVNode, ar as normalizeClass, et as createVNode, sr as normalizeStyle } from "./vue.runtime.esm-bundler-BvoXUmaf.js";
|
||||
import { l as propsFactory, n as genericComponent } from "./defineComponent-DB6xIcDy.js";
|
||||
import { t as makeComponentProps } from "./component-DdiwBe6i.js";
|
||||
import { t as useRender } from "./useRender-fVtVsZgv.js";
|
||||
import { i as useLayout } from "./layout-C9QMoF7I.js";
|
||||
import { t as makeTagProps } from "./tag-C_KkCPzB.js";
|
||||
import { n as useDimension, t as makeDimensionProps } from "./dimensions-BDdmuRdK.js";
|
||||
import { t as useSsrBoot } from "./ssrBoot-CSc1_bcP.js";
|
||||
import "/Users/thackmaster/Development/routie2/frontend/node_modules/vuetify/lib/components/VMain/VMain.css";
|
||||
//#region node_modules/vuetify/lib/components/VMain/VMain.js
|
||||
var makeVMainProps = propsFactory({
|
||||
scrollable: Boolean,
|
||||
...makeComponentProps(),
|
||||
...makeDimensionProps(),
|
||||
...makeTagProps({ tag: "main" })
|
||||
}, "VMain");
|
||||
var VMain = genericComponent()({
|
||||
name: "VMain",
|
||||
props: makeVMainProps(),
|
||||
setup(props, { slots }) {
|
||||
const { dimensionStyles } = useDimension(props);
|
||||
const { mainStyles } = useLayout();
|
||||
const { ssrBootStyles } = useSsrBoot();
|
||||
useRender(() => createVNode(props.tag, {
|
||||
"class": normalizeClass([
|
||||
"v-main",
|
||||
{ "v-main--scrollable": props.scrollable },
|
||||
props.class
|
||||
]),
|
||||
"style": normalizeStyle([
|
||||
mainStyles.value,
|
||||
ssrBootStyles.value,
|
||||
dimensionStyles.value,
|
||||
props.style
|
||||
])
|
||||
}, { default: () => [props.scrollable ? createBaseVNode("div", { "class": "v-main__scroller" }, [slots.default?.()]) : slots.default?.()] }));
|
||||
return {};
|
||||
}
|
||||
});
|
||||
//#endregion
|
||||
export { VMain };
|
||||
|
||||
//# sourceMappingURL=vuetify_components_VMain.js.map
|
||||
Reference in New Issue
Block a user