teaching-open/web
2024-06-24 11:26:23 +08:00
..
public 修复Scratch中文名称乱码 2024-06-23 20:32:06 +08:00
src 新窗口打开作品页面 2024-06-24 11:26:23 +08:00
.editorconfig
.eslintignore
.gitattributes
.gitignore
.prettierrc
babel.config.js
idea.config.js
LICENSE
package-lock.json 移除sass 2024-05-31 20:19:13 +08:00
package.json 移除sass 2024-05-31 20:19:13 +08:00
README.md
vue.config.js Scratch云变量和背包 2023-10-09 16:00:08 +08:00
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.jsoneslintConfig 整个节点代码

  • 修改 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,
      }
    }
  }