You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
| ├── build                      // 构建相关
 | |
| ├── bin                        // 执行脚本
 | |
| ├── build                      // 编译文件
 | |
| ├── public                     // 公共文件
 | |
| │   ├── tinymce                // 富文本组件
 | |
| │   ├── favicon.ico            // favicon图标
 | |
| │   └── index.html             // html模板
 | |
| │   └── robots.txt             // 反爬虫
 | |
| ├── src                        // 源代码
 | |
| │   ├── api                    // 所有请求
 | |
| │   ├── assets                 // 主题 字体等静态资源
 | |
| │   ├── components             // 全局公用组件
 | |
| │   ├── directive              // 全局指令
 | |
| │   ├── layout                 // 布局
 | |
| │   ├── plugins                // 通用方法
 | |
| │   ├── router                 // 路由
 | |
| │   ├── store                  // 全局 store管理
 | |
| │   ├── utils                  // 全局公用方法
 | |
| │   ├── views                  // 所有界面组件
 | |
| │   ├── App.vue                // 入口页面
 | |
| │   ├── main.js                // 入口 加载组件 初始化等
 | |
| │   ├── permission.js          // 权限管理
 | |
| │   └── settings.js            // 系统配置
 | |
| ├── .editorconfig              // 编码格式
 | |
| ├── .env.development           // 开发环境配置
 | |
| ├── .env.production            // 生产环境配置
 | |
| ├── .env.staging               // 测试环境配置
 | |
| ├── .eslintignore              // 忽略语法检查
 | |
| ├── .eslintrc.js               // eslint 配置项
 | |
| ├── .gitignore                 // git 忽略项
 | |
| ├── babel.config.js            // babel.config.js
 | |
| ├── package.json               // package.json
 | |
| └── vue.config.js              // vue.config.js
 |