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

@ -33,17 +33,11 @@ export default Vue.extend({
watch: {
src() {
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
this.saveSrc();
},
list() {
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
this.saveSrc();
}
},
@ -65,6 +59,13 @@ export default Vue.extend({
},
methods: {
saveSrc() {
this.$store.commit('device/setTl', {
src: this.src,
arg: this.list
});
},
warp(date) {
(this.$refs.tl as any).warp(date);
},

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() {
}