EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/constants/img-mode.ts
2025-02-08 18:50:38 +08:00

19 lines
308 B
TypeScript

export const componentImgModes = [
'scaleToFill',
'aspectFit',
'aspectFill',
'widthFix',
'heightFix',
'top',
'bottom',
'center',
'left',
'right',
'top left',
'top right',
'bottom left',
'bottom right',
] as const
export type ComponentImgMode = (typeof componentImgModes)[number]