: 删除 yarn.yaml 与 yarn-lock.yaml 文件

This commit is contained in:
就眠儀式
2022-05-04 00:43:59 +08:00
parent 20b35892b8
commit 72e3802659
3 changed files with 2 additions and 4570 deletions

View File

@@ -21,7 +21,7 @@ export interface LaySliderProps {
disabled?: boolean;
range?: boolean;
rangeValue?: number[];
showDots?: boolean
showDots?: boolean;
}
const emit = defineEmits(["update:modelValue"]);
@@ -33,7 +33,7 @@ const props = withDefaults(defineProps<LaySliderProps>(), {
step: 0,
min: 0,
max: 100,
showDots: false
showDots: false,
});
let rangeValues: Ref<number[]> | any = toRef(props, "rangeValue");