1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <template>
| <div class="dialog-container">
| <el-dialog v-model="dialogState" width="800" align-center>
| <template #header="{ titleId, titleClass }">
| <div class="dialog-header">
| <h4 :id="titleId" :class="titleClass">考生身份信息确认</h4>
|
| </div>
| </template>
| </el-dialog>
| </div>
| </template>
|
| <script setup>
| import {ref} from 'vue';
|
| const dialogState = ref(false);
|
| </script>
|
| <style lang="scss" scoped></style>
|
|