fix(api): use bcrypt directly instead of passlib for compatibility

This commit is contained in:
bwstudio
2026-05-21 22:18:36 +08:00
parent 7f51d200f1
commit 4651781bc3
23511 changed files with 2587254 additions and 8 deletions
+30
View File
@@ -0,0 +1,30 @@
import { buildProps } from "../../../utils/vue/props/runtime.mjs";
//#region ../../packages/components/select/src/option.ts
const COMPONENT_NAME = "ElOption";
const optionProps = buildProps({
/**
* @description value of option
*/
value: {
type: [
String,
Number,
Boolean,
Object
],
required: true
},
/**
* @description label of option, same as `value` if omitted
*/
label: { type: [String, Number] },
created: Boolean,
/**
* @description whether option is disabled
*/
disabled: Boolean
});
//#endregion
export { COMPONENT_NAME, optionProps };
//# sourceMappingURL=option.mjs.map