WIP: show timeline with megalodon

This commit is contained in:
Cutls
2019-04-24 01:07:20 +09:00
parent 6adb1ce6d7
commit 4f2da222a1
5 changed files with 198 additions and 122 deletions

View File

@@ -40,7 +40,13 @@ export default class AddColumn extends Vue {
public addTL() {
this.showInput = false
this.pubTL.push(this.instance)
console.log(this.pubTL)
this.timeline()
}
public timeline(){
this.pubTL.forEach(function( value ) {
ipcRenderer.send('no-auth-streaming', value);
});
}
}
</script>=