Element框架

Element,是由国内的饿了么团队开发并开源的一套为开发者、设计师和产品经理准备的基于 Vue 2.0 的桌面端组件库。简单的说ElementUi是一个基于Vue的Ui框架,适用于PC端。ElementUi与前端著名的Bootstrap框架很相似。

ElementUi官方网址:https://element.eleme.cn/#/zh-CN

安装

推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。

npm i element-ui -S

使用

ElementUi有两种引入方式:全局引入,按需引入。
一般使用全局引入:
在main.js内:

   import ElementUI from 'element-ui'; 
   import 'element-ui/lib/theme-chalk/index.css';
   Vue.use(ElementUI)

猜你喜欢

转载自blog.csdn.net/qq_43374694/article/details/125969735