fix Bug or esLink formatting

This commit is contained in:
Ah jung
2021-07-22 13:47:44 +08:00
parent f6be8f521e
commit 7f81152793
172 changed files with 10553 additions and 9031 deletions

View File

@@ -1,3 +1,3 @@
import DialogContent from './index.vue'
import DialogContent from './index.vue';
export { DialogContent }
export { DialogContent };

View File

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