Vuetify에서 대화상자를 열 때 초점 텍스트 필드를 설정합니다

1982 단어 Vue.jsVuetifytech
다음은 참조입니다.
https://stackoverflow.com/questions/59407003/set-focus-text-field-inside-dialog-when-dialog-opened
아래와 같이 대화상자를 열고 잠시 기다렸다가 다시 방문$refs하면 성공합니다.
watch: {
   dialog: function(value) {
      if (value) {
        setTimeout(() => {
          this.$refs.name.focus();
       }, 200);
     }
   }
}

좋은 웹페이지 즐겨찾기