소스 검색

focus element on mounted function

pull/342/head
Guillaume Vincent 8 년 전
부모
커밋
fdb6c071e6
2개의 변경된 파일10개의 추가작업 그리고 6개의 파일을 삭제
  1. +3
    -3
      dist/lesspass.min.js
  2. +7
    -3
      src/views/PasswordGenerator.vue

+ 3
- 3
dist/lesspass.min.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 7
- 3
src/views/PasswordGenerator.vue 파일 보기

@@ -239,9 +239,6 @@
getSite(this.version).then(site => {
if (site) {
this.$store.commit('UPDATE_SITE', {site});
this.$refs.login.focus();
}else{
this.$refs.site.focus();
}
});

@@ -255,6 +252,13 @@
}
});
},
mounted(){
if (this.password.site) {
this.$refs.login.focus();
} else {
this.$refs.site.focus();
}
},
data(){
return {
masterPassword: '',


불러오는 중...
취소
저장