template.vue 307 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="app-container">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. methods: {
  12. }
  13. }
  14. </script>
  15. <style lang="scss">
  16. .app-container {
  17. background: #F4F2F2;
  18. padding: 0 30rpx;
  19. padding-top: 20rpx;
  20. box-sizing: border-box;
  21. }
  22. </style>