addressBox.vue 380 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="hflex acenter jbetween">
  3. <view class="hflex acenter">
  4. <image src="@/static/logo.png" mode="aspectFill" class="icon"></image>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import $api from '@/static/js/api.js'
  10. export default {
  11. props: {
  12. },
  13. data() {
  14. return{
  15. }
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. </style>