12345678910111213141516171819202122 |
- <template>
- <el-dialog :visible.sync="centerDialogVisible" width="30%" center style="display: flex;">
- <div>/////</div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="centerDialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="centerDialogVisible = false">确 认</el-button>
- </span>
- </el-dialog>
- </template>
- <script>
- export default {
- data() {
- return {
- centerDialogVisible: false
- };
- }
- };
- </script>
- <script lang="less" scoped>
- </script>
|