<template>
<el-dialog
title="试卷描述"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose">
<slot></slot>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="display">确 定</el-button>
</span>
</el-dialog>
</template>
<script>
export default {
data() {
return {
dialogVisible: true,
};
},
methods:{
display(){
this.dialogVisible=false;
this.$emit("dis");
}
}
}
</script>
<style>
</style>
使用elment 自己封装提示弹窗,内容用插槽自定义
最新推荐文章于 2025-04-29 18:30:36 发布