application.vue 226 B

12345678910111213141516
  1. <!-- @format -->
  2. <template>
  3. <view class="app-container"> </view>
  4. </template>
  5. <script>
  6. export default {};
  7. </script>
  8. <style lang="scss" scoped>
  9. .app-container {
  10. height: 100vh;
  11. background: rgb(243, 244, 249);
  12. }
  13. </style>