- ie9 及以上版本
- 需要开启 box-sizing:border-box;
*{
box-sizing:border-box;
*::after{
box-sizing:border-box;
}
*::before{
box-sizing:border-box;
}
}
- 安装组件
npm install ecode-ui -S
- 引入 EcodeUI
import Vue from 'vue'
import ECodeUI from '@/index'
Vue.use(ECodeUI)