fix: image width & height not work
parent
49d4b3166e
commit
2c7008d786
|
@ -1,4 +1,4 @@
|
||||||
import type { ImgHTMLAttributes, CSSProperties, PropType } from 'vue';
|
import type { CSSProperties, PropType } from 'vue';
|
||||||
import { ref, watch, defineComponent, computed, onMounted, onUnmounted } from 'vue';
|
import { ref, watch, defineComponent, computed, onMounted, onUnmounted } from 'vue';
|
||||||
import isNumber from 'lodash-es/isNumber';
|
import isNumber from 'lodash-es/isNumber';
|
||||||
import cn from '../../_util/classNames';
|
import cn from '../../_util/classNames';
|
||||||
|
@ -203,8 +203,6 @@ const ImageInternal = defineComponent({
|
||||||
placeholder,
|
placeholder,
|
||||||
wrapperStyle,
|
wrapperStyle,
|
||||||
rootClassName,
|
rootClassName,
|
||||||
} = props;
|
|
||||||
const {
|
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
crossorigin,
|
crossorigin,
|
||||||
|
@ -215,7 +213,7 @@ const ImageInternal = defineComponent({
|
||||||
usemap,
|
usemap,
|
||||||
class: cls,
|
class: cls,
|
||||||
style,
|
style,
|
||||||
} = attrs as ImgHTMLAttributes;
|
} = { ...props, ...attrs } as any;
|
||||||
const { icons, maskClassName, ...dialogProps } = preview.value;
|
const { icons, maskClassName, ...dialogProps } = preview.value;
|
||||||
|
|
||||||
const wrappperClass = cn(prefixCls, wrapperClassName, rootClassName, {
|
const wrappperClass = cn(prefixCls, wrapperClassName, rootClassName, {
|
||||||
|
|
Loading…
Reference in New Issue