disabled.vue 565 B

12345678910111213141516171819202122
  1. <template>
  2. <el-dialog :visible.sync="centerDialogVisible" width="30%" center style="display: flex;">
  3. <div>/////</div>
  4. <span slot="footer" class="dialog-footer">
  5. <el-button @click="centerDialogVisible = false">取 消</el-button>
  6. <el-button type="primary" @click="centerDialogVisible = false">确 认</el-button>
  7. </span>
  8. </el-dialog>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. centerDialogVisible: false
  15. };
  16. }
  17. };
  18. </script>
  19. <script lang="less" scoped>
  20. </script>