1234567891011121314151617181920212223 |
- <template>
- <view class="Logo">
- <image src="../../static/logo.jpg" mode=""></image>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- }
- }
- </script>
- <style lang="less">
- .Logo image{
- width: 300rpx;
- height: 300rpx;
- margin-left: 220rpx;
- margin-top: 200rpx;
- }
- </style>
|