123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="content">
- <view class="test"></view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
-
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- .test{
- width: 350rpx;
- height: 350rpx;
- background: red;
- }
- </style>
|