From 15ce9f5019a07a4bc3c030fa6001d75a960fa4d7 Mon Sep 17 00:00:00 2001 From: Pan Date: Sun, 14 May 2017 23:03:27 +0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index 944455e..abadbce 100644 --- a/Home.md +++ b/Home.md @@ -1,4 +1,24 @@ ## iconfont -现在阿里的iconfont 不支持将自己的项目对外公开,所以只能先用图片的形式展现,已向官方提issue。 +本项目中的图标用的是阿里的iconfont, 但它暂时还不支持将自己的项目对外公开,所以只能先用图片的形式展现。 -![iconfont](https://github.com/PanJiaChen/vue-element-admin/blob/master/documentImg/iconfont.png) \ No newline at end of file +![iconfont](https://github.com/PanJiaChen/vue-element-admin/blob/master/documentImg/iconfont.png) + +## babel-polyfill +本项目暂时没有兼容性需求,如有兼容性需求可自行使用babel-polyfill。 +在Node/Browserify/webpack中使用 +```shell +npm install --save babel-polyfill //下载依赖 +``` +在入口文件中引入 +```javascript +import 'babel-polyfill'; +// 或者 +require('babel-polyfill');//es6 +``` +在webpack.config.js中加入babel-polyfill到你的入口数组: +```javascript +module.exports = { + entry:["babel-polyfill","./app/js"] +} +``` +具体可参考 [link](https://babeljs.io/docs/usage/polyfill/) \ No newline at end of file