# oracleWeb **Repository Path**: yangyiyangyi/oracle-web ## Basic Information - **Project Name**: oracleWeb - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-04 - **Last Updated**: 2025-09-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-cli-2 > vue-cli@2.9.x 为基础,升级webpack到4.16.x,vue到2.5.17,使用标准CSS样式,集成 Element UI 组件库 一个简洁的 Vue 2.5 项目脚手架,展示 Element UI 组件的基本使用。 ## Build Setup ``` bash # install dependencies yarn # serve with hot reload at localhost:9510 yarn dev # build for production with minification yarn build # build for production and view the bundle analyzer report npm run build --report ``` ## Tech Stack 1、[axios](https://github.com/axios/axios),基于Promise的HTTP客户端,用于浏览器和node.js 2、[qs](https://github.com/ljharb/qs),查询字符串解析和字符串化库,增加了一些安全性 3、[vue](https://cn.vuejs.org) 4、[vue-router](https://router.vuejs.org/zh) 5、[element-ui](https://element.eleme.cn/),基于 Vue 2.0 的桌面端组件库 6、标准 CSS 样式 ## Directory Structure ```bash ├─ .babelrc # babel配置 ├─ .editorconfig # 编辑器配置 ├─ .eslintignore # 校验忽略 ├─ .eslintrc.js # 校验配置 ├─ .gitattributes # git属性 ├─ .gitignore # git提交忽略 ├─ .postcssrc.js # postcss配置 ├─ README.md ├─ index.html # 默认html模版 ├─ package.json ├─ yarn.lock ├─ static # 静态资源 │ └─ favicon.ico ├─ build # webpack相关配置 ├─ config # webpack部分配置项 └─ src # 源代码 ├─ api # 请求api │ └─ index.js # axios相关配置 ├─ assets # 相关资源 │ ├─ images # 资源图片 │ │ └─ logo.png │ └─ styles # 样式 │ └─ reset.styl ├─ router # 路由 │ └─ index.js # 路由相关配置 ├─ pages # 相关页面 │ └─ index.vue # 简单的"你好"页面 ├─ App.vue # 应用根组件 └─ main.js # 入口文件 ``` npx webpack-dev-server --inline --progress --config build/webpack.dev.conf.js