component
This commit is contained in:
parent
d57bcd1719
commit
9be531bd01
2 changed files with 17 additions and 0 deletions
5
src/modules/05_placement/components/PlacementDetail.vue
Normal file
5
src/modules/05_placement/components/PlacementDetail.vue
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
<script setup lang="ts"></script>
|
||||||
|
<template>
|
||||||
|
<h1>test</h1>
|
||||||
|
</template>
|
||||||
|
<style lang="scss"></style>
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const Main = () => import("@/modules/05_placement/views/Main.vue");
|
const Main = () => import("@/modules/05_placement/views/Main.vue");
|
||||||
|
const Detail = () => import("@/modules/05_placement/components/PlacementDetail.vue");
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
|
|
@ -15,4 +16,15 @@ export default [
|
||||||
Role: "placement",
|
Role: "placement",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: "/placement/detail",
|
||||||
|
name: "placementDetail",
|
||||||
|
component: Detail,
|
||||||
|
meta: {
|
||||||
|
Auth: true,
|
||||||
|
Key: [7],
|
||||||
|
Role: "placement",
|
||||||
|
},
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue