aaaa.vue 256 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="aa">
  3. 23213123123
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. .aa {
  18. width: 100px;
  19. height: 200rpx;
  20. background-color: red;
  21. }
  22. </style>