Element UI--入门安装、布局layout

遇到不会使用得看这个视频

https://www.bilibili.com/video/BV1mv411G7x9?p=7&spm_id_from=pageDriver


 创建好脚手架后

npm i element-ui -S

进行安装,安装好后在pakege.json里面可以看到安装的版本

在main.js中引入,代码如下:

import ElementUI from 'element-ui'

import 'element-ui/lib/theme-chalk/index.css'

Vue.use(ElementUI)

row  行 

el-row :gutter可以控制间隔 :span可以设置类似flex的宽度?

input

你可能感兴趣的:(Element UI--入门安装、布局layout)