1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| import { View, Image } from '@tarojs/components' import { useLoad } from '@tarojs/taro' import { Component, ReactNode } from 'react' import './index.scss' import logoTaro from '../../assets/images/logo-taro-1.png';
export default class Index extends Component {
render() { return ( <View className='components-page'> <Image style='width: 300px;height: 100px;background: #001111;' src={logoTaro} mode="scaleToFill" /> <Image style='width: 300px;height: 100px;background: #fff;' src='https://img1.baidu.com/it/u=4032784836,2034674575&fm=253&fmt=auto&app=138&f=JPEG?w=638&h=500' mode="scaleToFill" /> </View> ) } }
|