20 lines
224 B
Vue
20 lines
224 B
Vue
<template lang="pug">
|
|
.live
|
|
LiveList
|
|
</template>
|
|
|
|
<script>
|
|
import LiveList from '@c/LiveList'
|
|
|
|
export default {
|
|
created () {
|
|
},
|
|
components: {
|
|
LiveList
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
</style>
|