Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
18
VApp/node_modules/vuetify/lib/components/VValidation/VValidation.mjs
generated
vendored
Normal file
18
VApp/node_modules/vuetify/lib/components/VValidation/VValidation.mjs
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
// Composables
|
||||
import { makeValidationProps, useValidation } from "../../composables/validation.mjs"; // Utilities
|
||||
import { genericComponent } from "../../util/index.mjs"; // Types
|
||||
export const VValidation = genericComponent()({
|
||||
name: 'VValidation',
|
||||
props: makeValidationProps(),
|
||||
emits: {
|
||||
'update:modelValue': value => true
|
||||
},
|
||||
setup(props, _ref) {
|
||||
let {
|
||||
slots
|
||||
} = _ref;
|
||||
const validation = useValidation(props, 'validation');
|
||||
return () => slots.default?.(validation);
|
||||
}
|
||||
});
|
||||
//# sourceMappingURL=VValidation.mjs.map
|
Reference in New Issue
Block a user