# Clone project
git clone [email protected]:honghuhu/edu-ui.git
# Install dependencies
npm install
# 建议不要用cnpm 安装有各种诡异的bug 可以通过如下操作解决npm速度慢的问题
npm install --registry=https://registry.npm.taobao.org
# Serve with hot reload at localhost:9528
npm run dev
# Build for production with minification
npm run build
# Build for production and view the bundle analyzer report
npm run build --report
首先找到 index.html
(根目录下)
引入 Element 的 css 和 js ,并且引入 vue 。因为 Element-Ui 是依赖 vue 的,所以必须在它之前引入 vue 。
之后找到 webpack.base.conf.js 加入 externals
让 webpack 不打包 vue 和 element
externals: {
vue: 'Vue',
'element-ui':'ELEMENT'
}