1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <template>
| <div class="container">
| <el-dialog title="编辑分组" :append-to-body="true" v-model:visible="dialogFormVisible">
| <slot name="content"></slot> <slot name="footer"></slot>
| </el-dialog>
| </div>
| </template>
|
| <script>
| export default {
| data() {
| return {}
| },
| }
| </script>
|
| <style scoped lang="stylus"></style>
|
|