ปรับเมนู และเพิ่ม UI ผลงาน
This commit is contained in:
parent
b53765a469
commit
38aa872064
11 changed files with 609 additions and 74 deletions
33
src/modules/13_portfolio/router.ts
Normal file
33
src/modules/13_portfolio/router.ts
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/**
|
||||
* Router ขอโอน
|
||||
*/
|
||||
|
||||
const MainPage = () => import("@/modules/13_portfolio/views/Main.vue");
|
||||
const FormData = () => import("@/modules/13_portfolio/views/Add.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/portfolio",
|
||||
name: "portfolio",
|
||||
component: MainPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/portfolio/add",
|
||||
name: "addPortfolio",
|
||||
component: FormData,
|
||||
meta: {
|
||||
Auth: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/portfolio/:id",
|
||||
name: "portfolioDetail",
|
||||
component: FormData,
|
||||
meta: {
|
||||
Auth: true,
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue