You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
duoji-frontend/src/views/center/index.vue

15 lines
259 B
Vue

6 years ago
<template>
<list v-if="$route.name === 'centerIndex'"></list>
<router-view v-else></router-view>
</template>
<script>
import list from "./web/list.vue";
export default {
name: "centerIndex",
components: { list }
};
</script>
<style>
</style>