update files

This commit is contained in:
Nuintun
2015-11-20 15:02:43 +08:00
parent 05a99b46ac
commit 09c9b8268e
10 changed files with 124 additions and 20 deletions

View File

@@ -18,9 +18,20 @@ module.exports = Vue.component('app-configure', {
required: true
}
},
data: function (){
return {
popup: false
}
},
methods: {
appConfigure: function (command, configure){
ipc.send('app-configure', command, configure);
},
popupToggle: function (){
this.popup = !this.popup;
},
addProject: function (){
}
}
});