# v3-antd-admin **Repository Path**: onlymry/v3-antd-admin ## Basic Information - **Project Name**: v3-antd-admin - **Description**: vue3.0 + typescript + antd2.x 中后台管理系统前端模板 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: dev - **Homepage**: http://navigator.onlyylt.top/ - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2020-12-25 - **Last Updated**: 2022-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # v3-antd-admin ## Project setup ``` yarn install ``` ### Compiles and hot-reloads for development ``` yarn serve ``` ### Compiles and minifies for production ``` yarn build ``` ### Lints and fixes files ``` yarn lint ``` ### Use #### menu config ```json [ { "group": "Home", "groupIcon": "AlignLeftOutlined", "title": "Home", "children": [ { "path": "/home", "name": "Home", "icon": "AlignLeftOutlined", "meta": { "requiresAuth": true }, "component": "views/Home/Home.vue" }, { "path": "/dashbord", "icon": "AlignLeftOutlined", "name": "Dashbord", "meta": { "requiresAuth": true }, "component": "views/Home/Dashbord.vue" } ] }, { "group": "About", "groupIcon": "InfoOutlined", "title": "About", "children": [ { "path": "/about", "name": "About", "icon": "QqOutlined", "component": "views/About/About.vue" }, { "path": "/info", "name": "Info", "component": "views/About/Info.vue" } ] } ] ```