qx
qx
6 天以前 94e3b64fbb8d3d4b148174cabcfbbccad2e9809f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div id="app">
    <chat />
  </div>
</template>
 
<script>
import chat from '../components/chat.vue';
 
export default {
  name: 'App',
  components: {
    chat
  }
};
</script>