I can\'t find a way to clear the select field in method \"afterselection\" which is invoked after selecting an item:
template:
Just for reference, you can clear a select field in vuetify with
this.$nextTick(() => { this.selected = null })
the important thing is the "nextTick"! otherwise it wont be rendered...
see this codepen provided by a vuetify-dev: working codepen