保誠-保戶業務員媒合平台
Tomas
2021-10-29 4f2e9b65d2be8f7b79f29870259c53b4c39a3702
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
    <div>
        <el-dialog
            title=""
            :visible.sync="dialogVisible"
            width="70%"
        >
            <slot></slot>
        </el-dialog>
    </div>
</template>
 
<script lang="ts">
import { Vue, Component, PropSync } from 'vue-property-decorator';
 
@Component
export default class UiDialog extends Vue {
    @PropSync('isVisible') dialogVisible!: boolean
}
</script>