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.
|
<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> |