chore: 同步完整版代码

This commit is contained in:
xiaoxian521
2022-11-11 11:53:54 +08:00
parent 1bafbeaab7
commit d53496e495
16 changed files with 1090 additions and 784 deletions

View File

@@ -3,7 +3,7 @@ import { ref } from "vue";
import { onClickOutside } from "@vueuse/core";
import { emitter } from "@/utils/mitt";
let show = ref<Boolean>(false);
const show = ref<Boolean>(false);
const target = ref(null);
onClickOutside(target, (event: any) => {
if (event.clientX > target.value.offsetLeft) return;