arco-design-vue
arco-design-vue copied to clipboard
颜色选择器ColorPicker 在 v-model 属性存在状况下,移动调色板颜色,下方的色调控制条指示器会异常抖动。
- [x] I'm sure this does not appear in the issue list of the repository
Basic Info
- Package Name And Version: @arco-design/[email protected]
- Framework version: Vue
- Browser: chrome121.0.0.0
- Reproduction Link: https://codesandbox.io/p/sandbox/brave-shtern-rn2f9y?file=%2Fsrc%2FApp.vue%3A8%2C15
复现步骤
<template>
<a-space>
<a-color-picker v-model="value" />
</a-space>
</template>
<script setup>
import { ref } from 'vue';
const value = ref('#165DFF')
</script>
拖动色板指示器在左下边界位置抖动明显。
预期结果
在受控模式下,拖动色板指示器灵敏度不受影响,色调指示器位置正常。