We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1c4428 + 10a6df6 commit 77cae96Copy full SHA for 77cae96
src/components/nav-buttons/SaveProject.vue
@@ -99,7 +99,8 @@ export default {
99
100
// for each route call parseAndDelete on htmlList
101
// eslint-disable-next-line no-unused-vars
102
- for (let view in routes) {
+ /* Cannot mutatue outside of Vuex
103
+ for (let view in routes ) {
104
routes[view].forEach((component) => {
105
let htmlList = component.htmlList;
106
this.parseAndDelete(htmlList);
@@ -113,7 +114,7 @@ export default {
113
114
this.parseAndDelete(comphtml);
115
}
116
-
117
+ */
118
fs.writeFileSync(data, JSON.stringify(state));
119
localforage.setItem(
120
fileName,
0 commit comments