addressBook.vue 281 B

123456789101112131415161718192021
  1. <template>
  2. <view class="container">
  3. <view class="">通讯录</view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {}
  10. }
  11. }
  12. </script>
  13. <style lang="scss" scoped>
  14. .container {
  15. width: 100vw;
  16. height: calc(100vh - 102rpx);
  17. background-color: salmon;
  18. }
  19. </style>