mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-27 06:59:54 +08:00
fix: spell check
This commit is contained in:
parent
781bd32c48
commit
019ccf04d1
@ -500,7 +500,7 @@ onMounted(async () => {
|
|||||||
:target-instance-info="item"
|
:target-instance-info="item"
|
||||||
:target-daemon-id="currentRemoteNode?.uuid"
|
:target-daemon-id="currentRemoteNode?.uuid"
|
||||||
@click="handleSelectInstance(item)"
|
@click="handleSelectInstance(item)"
|
||||||
@refrsh-list="initInstancesData()"
|
@refresh-list="initInstancesData()"
|
||||||
/>
|
/>
|
||||||
</a-col>
|
</a-col>
|
||||||
</fade-up-animation>
|
</fade-up-animation>
|
||||||
|
@ -14,8 +14,7 @@ import {
|
|||||||
CloudDownloadOutlined,
|
CloudDownloadOutlined,
|
||||||
CodeOutlined,
|
CodeOutlined,
|
||||||
UserOutlined,
|
UserOutlined,
|
||||||
TagsOutlined,
|
TagsOutlined
|
||||||
DeleteOutlined
|
|
||||||
} from "@ant-design/icons-vue";
|
} from "@ant-design/icons-vue";
|
||||||
import {
|
import {
|
||||||
openInstance,
|
openInstance,
|
||||||
@ -41,7 +40,7 @@ const props = defineProps<{
|
|||||||
targetDaemonId?: string;
|
targetDaemonId?: string;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const emits = defineEmits(["refrshList"]);
|
const emits = defineEmits(["refreshList"]);
|
||||||
|
|
||||||
const { containerState } = useLayoutContainerStore();
|
const { containerState } = useLayoutContainerStore();
|
||||||
const { getMetaOrRouteValue } = useLayoutCardTools(props.card);
|
const { getMetaOrRouteValue } = useLayoutCardTools(props.card);
|
||||||
@ -71,7 +70,7 @@ const { isLoading: updateLoading, execute: executeUpdate } = updateInstance();
|
|||||||
|
|
||||||
const refreshList = () => {
|
const refreshList = () => {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
emits("refrshList");
|
emits("refreshList");
|
||||||
}, 500);
|
}, 500);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user