1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <template>
| <sc-dialog v-model="visible" title="提示" @closed="$emit('closed')">
| 内容2
| <template #footer>
| <el-button @click="visible = false">取 消</el-button>
| <el-button type="primary" @click="visible = false">确 定</el-button>
| </template>
| </sc-dialog>
| </template>
|
| <script>
| export default {
| data() {
| return {
| visible: true
| }
| },
| mounted() {
| console.log("加载./dialog2组件完成")
| },
| methods: {
|
| }
| }
| </script>
|
| <style>
| </style>
|
|