release: update 3.9.0

This commit is contained in:
xiaoxian521
2022-11-30 16:33:46 +08:00
parent bbe23ce0a2
commit 2b67efe771
33 changed files with 143 additions and 145 deletions

View File

@@ -2,6 +2,7 @@
import { ref } from "vue";
import { onClickOutside } from "@vueuse/core";
import { emitter } from "@/utils/mitt";
import Close from "@iconify-icons/ep/close";
const show = ref<Boolean>(false);
const target = ref(null);
@@ -25,7 +26,7 @@ emitter.on("openPanel", () => {
<span title="关闭配置">
<IconifyIconOffline
class="dark:text-white"
icon="close"
:icon="Close"
@click="show = !show"
/>
</span>