
 < / div > 
												
					<el-dialog
  title=""
  :visible.sync="folderEditShow"
  width="30%"
  fullscreen
>
  <span></span>
  <span slot="footer" class="dialog-footer">
    <el-button @click="dialogVisible = false"> </el-button>
    <el-button type="primary" @click="dialogVisible = false"> </el-button>
  </span>
</el-dialog> 
  folderEdit(){
    this.folderEditShow = true
  }how can I position the dialog box in the middle of the entire window?

