ソースを参照

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


読み込み中…
キャンセル
保存