routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import { ir as capitalize, pt as h, rr as camelize } from "./vue.runtime.esm-bundler-BvoXUmaf.js";
import { n as genericComponent } from "./defineComponent-DB6xIcDy.js";
import { t as makeComponentProps } from "./component-DdiwBe6i.js";
//#region node_modules/vuetify/lib/util/createSimpleFunctional.js
function createSimpleFunctional(klass, tag = "div", name) {
return genericComponent()({
name: name ?? capitalize(camelize(klass.replace(/__/g, "-"))),
props: {
tag: {
type: String,
default: tag
},
...makeComponentProps()
},
setup(props, { slots }) {
return () => {
return h(props.tag, {
class: [klass, props.class],
style: props.style
}, slots.default?.());
};
}
});
}
//#endregion
export { createSimpleFunctional as t };
//# sourceMappingURL=createSimpleFunctional-Cqw8cOWQ.js.map