(component): release 1.4.14

This commit is contained in:
就眠儀式
2022-09-17 01:21:25 +08:00
parent 88c11dc2bc
commit db7e233a2a
5 changed files with 59 additions and 17 deletions

View File

@@ -18,13 +18,14 @@ import {
import type { ComputedRef } from "vue";
interface LayStepItemProps {
export interface LayStepItemProps {
space?: number;
}
const props = withDefaults(defineProps<LayStepItemProps>(), {
space: 0,
});
const index = ref(-1);
const parents: any = inject("laySplitPanel");
const currentInstance: any = getCurrentInstance();