ChatIndex.vue 287 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div>
  3. <span>chat index</span>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'ChatIndex',
  9. data() {
  10. return {
  11. }
  12. },
  13. created() {
  14. document.title = 'chat'
  15. this.getData()
  16. },
  17. methods: {
  18. getData() {
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>