Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/color-picker/src/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,11 @@ const gradient = (startColor: string, endColor: string, step: number) => {
</ul>
<h3 @click="triggerHtml5Color">更多颜色...</h3>
<!-- 用以激活HTML5颜色面板 -->
<!-- input可以正确触发 -->
<input type="color"
ref="html5ColorEl"
v-model="html5Color"
@change="updataValue(html5Color)">
@input="updataValue(html5Color)">
</div>
</div>
</div>
Expand Down