| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="container">
- <img mode="aspectFit" src="../../static/my/portrait.png" />
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- background-color: #000;
- // .img {
- // width: 100%;
- // height: auto;
- // }
- }
- </style>
|