Vuetify: 1.4.2
Vue: 2.5.22
Browsers: Google Chrome
OS: Linux
Clicking on the "X" icon will remove the selected item from the input.
Instead, the list itself is being displayed. It seems like the click event is not attached to the custom icon
Same here. I am using vue-svgicon in my project.
I was not able to run @shaikemarc's project so I setup another one using Vue CLI 3.
https://github.com/Mintonne/vuetify-clear-bug
All components with the clearable prop.
@Mintonne Is your issue different than OPs? The custom icon does not show up at all in the demo?
@nekosaur
Unless I am misreading OP's issue, they are the same.
If the clear icon is set to a component icon, clicking on it does nothing.
import { Clear } from './components/icons';
Vue.use(Vuetify, {
icons: {
'clear': {
component: Clear
}
}
@nekosaur @Mintonne
The same. Clicking does open the Menu but does not clear.
My problem is that I do not see the close icon in your demo, but perhaps that's an issue on my end.

I too don't see the icon of @Mintonne demo.
@nekosaur
You are right. The custom icons are not rendered on Chrome for some reason. The markup is there though.
On firefox, they show up just fine.
@nekosaur @shaikemarc
Should be fixed now.
UPDATE: Append and prepend icons are also affected. I have updated the demo to showcase this.
This is also affecting standard v-text-fields as well as auto-completes
vue-mdi doesn't delegate event listeners, and v-icon just renders the target component directly without anything wrapping it. We could probably use nativeOn instead to work around poorly designed icon components?
@KaelWD Work tks.
@Mintonne i will make PR to help.
Hey @AGPDev
vue-mdi is a fork of vue-material-design-icons with a few changes.
The original author seems to be actively maintaining the project. I think they will appreciate the PR. I can always get it from there.