index.vue 215 B

123456789101112
  1. <template>
  2. <live-statistics-panel />
  3. </template>
  4. <script>
  5. import LiveStatisticsPanel from './LiveStatisticsPanel.vue'
  6. export default {
  7. name: 'LiveStatistics',
  8. components: { LiveStatisticsPanel }
  9. }
  10. </script>