index.vue 315 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="content">
  3. <view class="test"></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. title: 'Hello'
  11. }
  12. },
  13. onLoad() {
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style scoped>
  20. .test{
  21. width: 350rpx;
  22. height: 350rpx;
  23. background: red;
  24. }
  25. </style>