mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
25 lines
337 B
Markdown
25 lines
337 B
Markdown
|
<cn>
|
|||
|
#### 色彩
|
|||
|
设置属性 `hue` 为 false,可以禁用色彩选项。
|
|||
|
</cn>
|
|||
|
|
|||
|
<us>
|
|||
|
#### Hue
|
|||
|
Set property `hue` to false, can hide hue slider.
|
|||
|
</us>
|
|||
|
|
|||
|
```vue
|
|||
|
<template>
|
|||
|
<a-color-picker v-model="color" :hue="false" />
|
|||
|
</template>
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
color: '#1890ff',
|
|||
|
};
|
|||
|
},
|
|||
|
};
|
|||
|
</script>
|
|||
|
```
|