123456789101112131415161718192021 |
- <template>
- <view>
- <image src="../../static/tp.jpg" mode="widthFix" class="pic"></image>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .pic{
- width: 100%;
- }
- </style>
|