增加admin管理帐号和项目的界面--初步实现
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
|
||||
import type Row from './row.vue';
|
||||
export declare const RowJustify: readonly ["start", "center", "end", "space-around", "space-between", "space-evenly"];
|
||||
export declare const RowAlign: readonly ["top", "middle", "bottom"];
|
||||
export declare const rowProps: {
|
||||
readonly tag: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
|
||||
readonly gutter: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
||||
readonly justify: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "center" | "end" | "space-around" | "space-between" | "space-evenly" | "start", unknown, "start", boolean>;
|
||||
readonly align: {
|
||||
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "top" | "bottom" | "middle", unknown>>;
|
||||
readonly required: false;
|
||||
readonly validator: ((val: unknown) => boolean) | undefined;
|
||||
__epPropKey: true;
|
||||
};
|
||||
};
|
||||
export type RowProps = ExtractPropTypes<typeof rowProps>;
|
||||
export type RowPropsPublic = __ExtractPublicPropTypes<typeof rowProps>;
|
||||
export type RowInstance = InstanceType<typeof Row> & unknown;
|
||||
Reference in New Issue
Block a user