photo.vue 396 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="container">
  3. <img mode="aspectFit" src="../../static/my/portrait.png" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {}
  10. }
  11. }
  12. </script>
  13. <style lang="scss" scoped>
  14. .container {
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. height: 100vh;
  19. background-color: #000;
  20. // .img {
  21. // width: 100%;
  22. // height: auto;
  23. // }
  24. }
  25. </style>