verte
verte copied to clipboard
Not change value with first click
Describe the bug Widgets with a set black color (or without a set value) the first time you click in the color selection canvas, the value does not change.
It appears on examples page.
To Reproduce Steps to reproduce the behavior:
- Go to examples page in docs
- Click on any widget with set black color (or withour a set value)
- Click on color choose canvas
- See is value not change
Expected behavior Value is change
Desktop (please complete the following information):
- OS: Ubuntu
- Browsers: Firefox, Chrome
- Version: ^0.0.12
I have same problem!
Same problem for me in 2021/08.
As a workaround I change the value of it when mounted
private async mounted() { const originalColor = this.colorHex; this.colorHex = '#ff00ff'; await this.$nextTick(); this.colorHex = originalColor; }