Skip to content

Commit

Permalink
chore: typo destroy word
Browse files Browse the repository at this point in the history
  • Loading branch information
1455668754 committed Jun 4, 2024
1 parent f830024 commit 4974de2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/components/Loading/src/createLoading.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { VNode, defineComponent, createVNode, render, reactive, h } from 'vue';
import { createVNode, defineComponent, h, reactive, render, VNode } from 'vue';
import type { LoadingProps } from './typing';

import Loading from './Loading.vue';
Expand Down Expand Up @@ -41,7 +41,7 @@ export function createLoading(props?: Partial<LoadingProps>, target?: HTMLElemen
target.appendChild(vm.el as HTMLElement);
}

function destory() {
function destroy() {
container && render(null, container);
container = vm = null;
}
Expand All @@ -53,7 +53,7 @@ export function createLoading(props?: Partial<LoadingProps>, target?: HTMLElemen
vm,
close,
open,
destory,
destroy,
setTip: (tip: string) => {
data.tip = tip;
},
Expand Down
4 changes: 2 additions & 2 deletions src/components/Loading/src/useLoading.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { unref } from 'vue';
import type { Ref } from 'vue';
import { unref } from 'vue';
import { tryOnUnmounted } from '@vueuse/core';
import { createLoading } from './createLoading';
import type { LoadingProps } from './typing';
Expand Down Expand Up @@ -47,7 +47,7 @@ export function useLoading(
};

tryOnUnmounted(() => {
instance.destory();
instance.destroy();
});

return [open, close, setTip];
Expand Down
4 changes: 2 additions & 2 deletions src/directives/loading.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createLoading } from '@/components/Loading';
import type { Directive, App } from 'vue';
import type { App, Directive } from 'vue';

const loadingDirective: Directive = {
mounted(el, binding) {
Expand Down Expand Up @@ -28,7 +28,7 @@ const loadingDirective: Directive = {
}
},
unmounted(el) {
el?.instance?.destory();
el?.instance?.destroy();
},
};

Expand Down

0 comments on commit 4974de2

Please sign in to comment.