| 123456789101112131415161718192021222324252627 |
- <template>
- <div>
- <span>chat index</span>
- </div>
- </template>
- <script>
- export default {
- name: 'ChatIndex',
- data() {
- return {
- }
- },
- created() {
- document.title = 'chat'
- this.getData()
- },
- methods: {
- getData() {
- }
- }
- }
- </script>
- <style>
- </style>
|