1
0
forked from jchomaz/Vulture

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

40
VApp/node_modules/.vite/deps/chunk-24LK52JF.js generated vendored Normal file
View File

@@ -0,0 +1,40 @@
import {
getCurrentInstanceName,
propsFactory
} from "./chunk-I4KGD5X4.js";
import {
computed,
isRef
} from "./chunk-PD2AWGJV.js";
// node_modules/vuetify/lib/composables/rounded.mjs
var makeRoundedProps = propsFactory({
rounded: {
type: [Boolean, Number, String],
default: void 0
}
}, "rounded");
function useRounded(props) {
let name = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : getCurrentInstanceName();
const roundedClasses = computed(() => {
const rounded = isRef(props) ? props.value : props.rounded;
const classes = [];
if (rounded === true || rounded === "") {
classes.push(`${name}--rounded`);
} else if (typeof rounded === "string" || rounded === 0) {
for (const value of String(rounded).split(" ")) {
classes.push(`rounded-${value}`);
}
}
return classes;
});
return {
roundedClasses
};
}
export {
makeRoundedProps,
useRounded
};
//# sourceMappingURL=chunk-24LK52JF.js.map