补充部分组件描述

This commit is contained in:
就眠儀式
2022-02-06 03:19:24 +08:00
parent a74c559fdd
commit 6e568f2d2f
94 changed files with 352 additions and 259 deletions

View File

@@ -8,16 +8,16 @@ export default {
import { ref, watch, provide, withDefaults, onMounted } from "vue";
import "./index.less";
// 属性接口定义
export interface LayStepProps {
vertical?: boolean;
minSize?: number;
vertical?: boolean;
minSize?: number;
}
// props初始化数据定义
const props = withDefaults(defineProps<LayStepProps>(), {
vertical: false,
minSize: 50,
});
let domEvent = ref();
let domStatus = ref(false);
const target = ref();

View File