Selaa lähdekoodia

focus element on mounted function

pull/342/head
Guillaume Vincent 8 vuotta sitten
vanhempi
commit
fdb6c071e6
2 muutettua tiedostoa jossa 10 lisäystä ja 6 poistoa
  1. +3
    -3
      dist/lesspass.min.js
  2. +7
    -3
      src/views/PasswordGenerator.vue

+ 3
- 3
dist/lesspass.min.js
File diff suppressed because it is too large
Näytä tiedosto


+ 7
- 3
src/views/PasswordGenerator.vue Näytä tiedosto

@@ -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: '',


Ladataan…
Peruuta
Tallenna