Skip to content

starwink/vue-components

Repository files navigation

ivuew admin componeents demo

Learning notes

[](https://githu

Install

// install dependencies
npm install

Run

Development

npm run dev

Production(Build)

npm run build

The version is packaged by pressing the git tab

npm run zbuild

Docker run

cd docker;
./deploy.sh 

文件结构

.
├── build  项目构建配置
├── config  开发相关配置
├── public  打包所需静态资源
└── src
    ├── api  AJAX请求
    └── assets  项目静态资源
        ├── icons  自定义图标资源
        └── images  图片资源
    ├── components  业务组件
    ├── config  项目运行配置
    ├── directive  自定义指令
    ├── libs  封装工具函数
    ├── locale  多语言文件
    ├── mock  mock模拟数据
    ├── router  路由配置
    ├── store  Vuex配置
    ├── view  页面文件
    └── tests  测试相关