File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,17 +10,21 @@ createApp({ render: () => h(App) })
1010/* eslint-disable */
1111store . dispatch ( "loadUser" ) . then (
1212 ( success ) => {
13+ //if user data is loaded successfully
1314 console . log ( "User data loaded successfully!" ) ;
1415 } ,
1516 ( error ) => {
17+ //if user data is not loaded successfully (failed to load)
1618 console . log ( "User data failed to load." ) ;
1719 } ,
1820) ; //load user data
1921store . dispatch ( "loadTodos" ) . then (
2022 ( success ) => {
23+ //if task list data is loaded successfully
2124 console . log ( "Task list data loaded successfully!" ) ;
2225 } ,
2326 ( error ) => {
27+ //if task list data is not loaded successfully (failed to load)
2428 console . log ( "Task list data failed to load." ) ;
2529 } ,
2630) ; //load task list data
Original file line number Diff line number Diff line change 1- declare module "vue-ellipse-progress" ; //use vue-ellipse-progress for circular progress
1+ declare module "vue-ellipse-progress" ; //use vue-ellipse-progress for circular progress bars
You can’t perform that action at this time.
0 commit comments