File tree Expand file tree Collapse file tree 1 file changed +10
-20
lines changed
Expand file tree Collapse file tree 1 file changed +10
-20
lines changed Original file line number Diff line number Diff line change 11<template >
2- <div v-drag =" layer.show" >
3- <el-dialog
4- v-model =" layer.show"
5- :title =" layer.title"
6- :width =" layer.width"
7- center
8- :draggable =" draggable"
9- >
10- <slot ></slot >
11- <template #footer v-if =" layer .showButton " >
12- <div >
13- <el-button type =" primary" @click =" confirm" >确认</el-button >
14- <el-button @click =" close" >取消</el-button >
15- </div >
16- </template >
17- </el-dialog >
18- </div >
2+ <el-dialog v-model =" layer.show" :title =" layer.title" :width =" layer.width" center :draggable =" draggable" >
3+ <slot ></slot >
4+ <template #footer v-if =" layer .showButton " >
5+ <div >
6+ <el-button type =" primary" @click =" confirm" >确认</el-button >
7+ <el-button @click =" close" >取消</el-button >
8+ </div >
9+ </template >
10+ </el-dialog >
1911</template >
2012
2113<script lang="ts">
@@ -65,6 +57,4 @@ export default defineComponent({
6557})
6658 </script >
6759
68- <style lang="scss" scoped>
69-
70- </style >
60+ <style lang="scss" scoped></style >
You can’t perform that action at this time.
0 commit comments