16 lines
225 B
Vue
16 lines
225 B
Vue
<template>
|
|
<ContentBase>排行榜</ContentBase>
|
|
</template>
|
|
|
|
<script>
|
|
import ContentBase from "../../components/ContentBase.vue";
|
|
|
|
export default {
|
|
components: {
|
|
ContentBase,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|