Vuetify Version: 2.3.10
Vue Version: 2.6.12
Browsers: Chrome 85.0.4183.102
OS: Mac OS 10.15.6
No errors should be displayed
Vue displays a warning:
vue.runtime.esm.js?2b0e:619 [Vue warn]: Failed to resolve directive: ripple
https://gist.github.com/canassa/0688187cc157bd20d4a8c967c1157479
The same issue. It comes from v-simple-checkbox, adding v-ripple or :ripple="false" to the v-simple-checkbox component solves these warning. But it should work from the box.
workaround:
// main.js
import Ripple from 'vuetify/lib/directives/ripple';
Vue.use(Vuetify, {
directives: {
Ripple,
},
});
Most helpful comment
The same issue. It comes from v-simple-checkbox, adding
v-rippleor:ripple="false"to the v-simple-checkbox component solves these warning. But it should work from the box.