2022-09-16 12:26:12 +08:00
|
|
|
<!-- eslint-disable vue/valid-template-root -->
|
2021-12-10 14:11:49 +08:00
|
|
|
<template></template>
|
2022-01-09 19:22:55 +08:00
|
|
|
<script lang="ts" setup>
|
2022-09-16 12:26:12 +08:00
|
|
|
import { useDialog } from 'naive-ui'
|
2022-01-09 19:22:55 +08:00
|
|
|
//挂载在 window 方便与在js中使用
|
2022-09-16 12:26:12 +08:00
|
|
|
window['$dialog'] = useDialog()
|
2021-12-10 14:11:49 +08:00
|
|
|
</script>
|