Vuetify: 0.17.3
Vue: 2.5.6
Browsers: Chrome 62.0.3202.94
OS: Linux x86_64

You should be able to click the upper checkbox or radio button
The lower checkbox/radio button gets clicked
https://vuetifyjs.com/components/selection-controls#selection-controls-view
The way the ripple effect is implemented makes this harder to fix. You can't just add pointer-events:none to the ripple span because you have to click it to trigger the effect. However, this also means that clicking the checkbox's label doesn't trigger the ripple effect.
Polymer doesn't ripple when clicking the label: https://www.webcomponents.org/element/PolymerElements/paper-checkbox
Material components for the web does, but the implementation is a bit janky (the focus ripple stays after clicking, and if you click fast enough, there's no ripple): https://material-components-web.appspot.com/checkbox.html
If you remove the ripple effect, you lose the focus effect, so there's no visual indication of focus, and there's also an empty, unclickable area between the checkbox and the label (that is normally covered by the ripple).
I fixed this with a bit of css hacking. I made the clickable area 30x30 pixels, so that it covers the 24x30px checkbox/radio button: https://github.com/nkovacs/vuetify/commit/2e315334b6ede4698f4a2dc52dba56cd79da29d5
Since the ripple directive puts a width and height onto the ripple animation element, I had to use !important to override it. I see two solutions to this:
I'd prefer the first one, since all the other sizes come from css in this case.
I tried the dev branch. This bug is not fixed.
Checkboxes were "fixed" by increasing the top margin, but this still happens with radios.
Yeah, I noticed the margin. That's not a fix. I may not want to have a huge margin like that.
I agree. I don't think it was intentional, just a side-effect of the overall component restructure.
This bug just popped up for me today, just throwing my hat in the ring!
This is still on the radar but being pushed to v1.3 due to time constraints.
Closed via 26af9bf