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/role/index.vue

15 lines
251 B
Vue

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