소스 검색

refresh apps after enable/disable

pull/1/head
Jonathan Cobb 4 년 전
부모
커밋
a607d50d7d
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +10
    -1
      src/account/AppsPage.vue

+ 10
- 1
src/account/AppsPage.vue 파일 보기

@@ -61,7 +61,7 @@
};
},
computed: {
...mapState('apps', ['mitmEnabled', 'apps']),
...mapState('apps', ['mitmEnabled', 'apps', 'app']),
...mapState('system', ['messages'])
},
created () {
@@ -116,6 +116,15 @@
errors: this.errors
});
}
},
watch: {
app (a) {
this.getAppsByUserId({
userId: this.user.uuid,
messages: this.messages,
errors: this.errors
});
}
}
};
</script>

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