clearing select field automatically after selecting item

前端 未结 4 1407
执念已碎
执念已碎 2021-01-18 08:29

I can\'t find a way to clear the select field in method \"afterselection\" which is invoked after selecting an item:

template:



        
4条回答
  •  伪装坚强ぢ
    2021-01-18 09:16

    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

提交回复
热议问题