update files

This commit is contained in:
nuintun
2015-11-24 15:25:20 +08:00
parent bc188752b4
commit 3b498fca42
4 changed files with 23 additions and 2 deletions

View File

@@ -71,6 +71,20 @@ module.exports = Vue.component('app-main', {
}
},
methods: {
isRunning: function (){
},
exec: function (name, command){
console.log('run %s: %s', name, command);
if (!window.AppRuntime[this.project.name]) {
window.AppRuntime[this.project.name] = {
name: name,
command: command,
terminal: ''
}
}
},
setting: function (){
this.showSetting = true;
},