UNPKG

@tarojs/components

Version:
30 lines (26 loc) 883 B
import { r as registerInstance, c as createEvent, h } from './index-5bd7cbab.js'; const indexCss = "taro-cover-image-core{overflow:hidden;width:320px;height:240px}"; let CoverImage = class { constructor(hostRef) { registerInstance(this, hostRef); this.onLoad = createEvent(this, "load", 7); this.onError = createEvent(this, "error", 7); this.nativeProps = {}; } imageOnLoad() { const { width, height, } = this.imgRef; this.onLoad.emit({ width, height }); } imageOnError() { this.onError.emit(); } render() { const { src, imageOnLoad, imageOnError, nativeProps } = this; return (h("img", Object.assign({ ref: img => (this.imgRef = img), src: src, onLoad: imageOnLoad.bind(this), onError: imageOnError.bind(this) }, nativeProps))); } }; CoverImage.style = indexCss; export { CoverImage as taro_cover_image_core };