This commit is contained in:
syuilo
2018-05-27 02:56:54 +09:00
parent f8abc8193b
commit 728dd446b3
2 changed files with 18 additions and 18 deletions

View File

@ -64,20 +64,12 @@ export default Vue.extend({
watch: {
src() {
this.showNav = false;
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
this.saveSrc();
},
list() {
this.showNav = false;
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
this.saveSrc();
},
showNav(v) {
@ -115,6 +107,13 @@ export default Vue.extend({
(this as any).apis.post();
},
saveSrc() {
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
},
warp() {
}