This commit is contained in:
syuilo 2018-02-21 15:30:56 +09:00
parent de6d77d0cb
commit c0f566f828
1 changed files with 0 additions and 7 deletions

View File

@ -72,7 +72,6 @@ export default Vue.extend({
},
data() {
return {
bakedHomeData: null,
widgetAdderSelected: null
};
},
@ -99,9 +98,6 @@ export default Vue.extend({
return (this as any).os.i.client_settings.home;
}
},
created() {
this.bakedHomeData = this.bakeHomeData();
},
mounted() {
this.$nextTick(() => {
if (!this.customize) {
@ -152,9 +148,6 @@ export default Vue.extend({
});
},
methods: {
bakeHomeData() {
return JSON.stringify(this.home);
},
onTlLoaded() {
this.$emit('loaded');
},