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