1234567891011121314151617181920212223242526 |
- <template>
- <view class="aa">
- 23213123123
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss">
- .aa {
- width: 100px;
- height: 200rpx;
- background-color: red;
- }
- </style>
|