第一步,我们先搭建好手脚架以及把需要的elementUI也映入进来。
- vue的手脚架搭建大家可参考:使用vue-cli搭建vue项目完整版或者官方的网站
- elementUI的引入也挺简单的,大家可以直接去官方网站就可以找到引入的方法。
第二步,在components中建立一个vue文件,然后可以去elementUI的官网中把Dialog组件中的表单弹窗复制过来
<template>
<div>
<el-dialog
:modal="true"
:modal-append-to-body="true"
:title="tittle"
:visible.sync="isShow"
:width="width"
:height="height"
:close-on-click-modal="false"
:show-close="true"
:close-on-press-escape="true"
center>
<el-form :model="form">
<el-form-item label="活动名称" :label-width=