移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
248 B

  1. <template>
  2. <div class="app-container">通讯录</div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "addressBook",
  7. data() {
  8. return {};
  9. },
  10. mounted() {},
  11. methods: {},
  12. };
  13. </script>
  14. <style scoped lang="scss">
  15. .app-container {
  16. }
  17. </style>