You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
603 B
Vue

2 years ago
<template>
<el-dialog
class="adddeviceDialog"
:title="deviceDialogTitle"
:visible.sync="deviceDialog"
width="420px"
>
<p>内容</p>
2 years ago
<div slot="footer" class="dialog-footer">
<el-button @click="closeDialog()"> </el-button>
2 years ago
<el-button type="primary" @click="submitForm()"> </el-button>
</div>
</el-dialog>
</template>
<script>
export default {
props: {},
2 years ago
data() {
return {};
2 years ago
},
methods: {
// 保存确定操作
submitForm() {},
2 years ago
//取消关闭弹窗
closeDialog(flag) {},
2 years ago
},
mounted() {},
watch: {},
2 years ago
};
</script>