# template **Repository Path**: sxc2333/template ## Basic Information - **Project Name**: template - **Description**: demo模板 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-15 - **Last Updated**: 2021-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ```bash # clone the project git clone https://github.com/PanJiaChen/vue-admin-template.git # enter the project directory cd vue-admin-template # install dependency npm install # develop npm run dev ``` This will automatically open http://localhost:9528 ## Build ```bash # build for test environment npm run build:stage # build for production environment npm run build:prod ``` ## Advanced ```bash # preview the release environment effect npm run preview # preview the release environment effect + static resource analysis npm run preview -- --report # code format check npm run lint # code format check and auto fix npm run lint -- --fix ``` |-- mixin |-- .editorconfig |-- .env.development |-- .env.production |-- .env.staging |-- .eslintignore |-- .eslintrc.js |-- .gitignore |-- .prettierrc |-- babel.config.js |-- package.json |-- postcss.config.js |-- README.md |-- vue.config.js |-- yarn.lock |-- build | |-- index.js |-- mock | |-- index.js | |-- mock-server.js | |-- table.js | |-- user.js | |-- utils.js |-- public | |-- favicon.ico | |-- index.html |-- src |-- App.vue |-- main.js |-- permission.js |-- settings.js |-- api | |-- table.js | |-- user.js |-- assets | |-- 404_images | |-- 404.png | |-- 404_cloud.png |-- components #组件 | |-- Breadcrumb | | |-- index.vue | |-- Hamburger | | |-- index.vue | |-- Mixins # 混用组件 | | |-- FormItem | | | |-- index.js # mixin后的ElementUI FormItem组件 | | | |-- validator # async-validator 校验器相关 | | | |-- index.js # 注册自定义组件 | | | |-- rules.js # 自定义校验规则 | | |-- Tabs | |-- SvgIcon | |-- index.vue |-- configs | |-- ui.js |-- icons | |-- index.js | |-- svgo.yml | |-- svg | |-- dashboard.svg | |-- example.svg | |-- eye-open.svg | |-- eye.svg | |-- form.svg | |-- link.svg | |-- nested.svg | |-- password.svg | |-- table.svg | |-- tree.svg | |-- user.svg |-- layout | |-- index.vue | |-- components | | |-- AppMain.vue | | |-- index.js | | |-- Navbar.vue | | |-- Sidebar | | |-- FixiOSBug.js | | |-- index.vue | | |-- Item.vue | | |-- Link.vue | | |-- Logo.vue | | |-- SidebarItem.vue | |-- mixin | |-- ResizeHandler.js |-- router | |-- index.js |-- store | |-- getters.js | |-- index.js | |-- modules | |-- app.js | |-- settings.js | |-- user.js |-- styles | |-- element-ui.scss | |-- index.scss | |-- mixin.scss | |-- sidebar.scss | |-- transition.scss | |-- variables.scss |-- utils | |-- auth.js | |-- get-page-title.js | |-- index.js | |-- request.js | |-- validate.js |-- views |-- 404.vue |-- dashboard | |-- index.vue |-- form | |-- index.vue |-- login | |-- index.vue |-- table |-- index.vue