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.
1 parent a94e282 commit 9d2ab04Copy full SHA for 9d2ab04
src/main.ts
@@ -7,7 +7,7 @@ createApp({ render: () => h(App) })
7
.use(store)
8
.use(veProgress)
9
.mount("#app");
10
-//eslint-disable-next-line
+/*eslint-disable*/
11
store.dispatch("loadUser").then(
12
(success) => {
13
console.log("User data loaded successfully!");
@@ -16,7 +16,6 @@ store.dispatch("loadUser").then(
16
console.log("User data failed to load.");
17
}
18
); //load user data
19
20
store.dispatch("loadTodos").then(
21
22
console.log("Task list data loaded successfully!");
@@ -25,3 +24,4 @@ store.dispatch("loadTodos").then(
25
24
console.log("Task list data failed to load.");
26
27
); //load task list data
+/*eslint-enable*/
0 commit comments