This commit is contained in:
syuilo
2019-04-17 14:30:31 +09:00
parent 946c3a25b9
commit 85959a3b9b
4 changed files with 26 additions and 23 deletions

View File

@ -525,15 +525,11 @@ export default Vue.extend({
this.$chooseDriveFile({
multiple: false
}).then(file => {
this.$root.api('i/update', {
wallpaperId: file.id
});
this.$store.dispatch('settings/set', { key: 'wallpaper', value: file.url });
});
},
deleteWallpaper() {
this.$root.api('i/update', {
wallpaperId: null
});
this.$store.dispatch('settings/set', { key: 'wallpaper', value: null });
},
checkForUpdate() {
this.checkingForUpdate = true;