Logo.vue 306 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="Logo">
  3. <image src="../../static/logo.jpg" mode=""></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. }
  12. }
  13. </script>
  14. <style lang="less">
  15. .Logo image{
  16. width: 300rpx;
  17. height: 300rpx;
  18. margin-left: 220rpx;
  19. margin-top: 200rpx;
  20. }
  21. </style>