Skip to content

Commit

Permalink
fix(slider): 带数值单游标示例无法拖动问题
Browse files Browse the repository at this point in the history
  • Loading branch information
LoopZhou committed Nov 27, 2023
1 parent 4752730 commit e96bef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slider/demos/label.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import { ref } from 'vue';
const value = ref(10);
const onChange = (e: any) => {
value.value = e.value;
const onChange = (e: number) => {
value.value = e;
};
</script>

Expand Down

0 comments on commit e96bef6

Please sign in to comment.