No Description

Sendya 8ea9de6032 fixed: storage util 6 years ago
public e3ab40e4e1 fixed user/avatar layout 6 years ago
src 8ea9de6032 fixed: storage util 6 years ago
.editorconfig 65970af1d5 fixed layout 6 years ago
.gitignore ddbda39d65 init 6 years ago
LICENSE 94fe1237f6 cleanup 6 years ago
README.md ee35797995 fix: eslint 6 years ago
babel.config.js ddbda39d65 init 6 years ago
idea.config.js 9e89d3069b add inner edit table 6 years ago
package.json 8ea9de6032 fixed: storage util 6 years ago
vue.config.js 5ea7991050 updated: mock server by:ihx.me 6 years ago
yarn.lock 8ea9de6032 fixed: storage util 6 years ago

README.md

vue-antd-pro

基于 Ant Design of Vue 实现的 Ant Design Pro Vue 版

预览地址 附带一些后台基础用到的列表展示例子

工作台

个人设置

内联编辑列表

角色列表

角色编辑

权限列表

权限编辑

环境和依赖

项目下载和运行

  • 拉取项目代码

    git clone https://github.com/sendya/ant-design-pro-vue.git
    cd ant-design-pro-vue
    
  • 安装依赖

    yarn install
    
  • 开发模式运行

    yarn run serve
    
  • 编译项目

    yarn run build
    
  • Lints and fixes files

    yarn run lint
    

其他说明

  • 项目使用的 vue-cli3, 请更新您的 cli

  • 修改 Ant Design 配色
    在文件 vue.config.js 中,其他 less 变量覆盖参考 ant design 官方说明

    css: {
    loaderOptions: {
      less: {
        modifyVars: {
          /* less 变量覆盖,用于自定义 ant design 主题 */
    
          'primary-color': '#F5222D',
          'link-color': '#F5222D',
          'border-radius-base': '4px',
        },
        javascriptEnabled: true,
      }
    }
    }