mirror of
https://github.com/open-scratch/teaching-open.git
synced 2024-11-25 16:32:36 +08:00
.. | ||
public | ||
src | ||
.editorconfig | ||
.eslintignore | ||
.gitattributes | ||
.gitignore | ||
.prettierrc | ||
babel.config.js | ||
idea.config.js | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
vue.config.js | ||
yarn |
前端技术
- 基础框架:ant-design-vue - Ant Design Of Vue 实现
- JavaScript框架:Vue
- Webpack
- node
- yarn
- eslint
- @vue/cli 3.2.1
项目运行
- 安装依赖
yarn install
- 开发模式运行
yarn run serve
- 编译项目
yarn run build
其他说明
-
项目使用的 vue-cli3, 请更新您的 cli
-
关闭 Eslint (不推荐) 移除
package.json
中eslintConfig
整个节点代码 -
修改 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,
}
}
}