13 lines
252 B
Vue
Raw Normal View History

2021-12-10 14:11:49 +08:00
<template></template>
<script lang="ts">
import { useDialog } from 'naive-ui';
export default {
name: 'DialogContent',
setup() {
//挂载在 window 方便与在js中使用
window['$dialog'] = useDialog();
},
};
</script>