浏览代码

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


正在加载...
取消
保存