File tree 4 files changed +1803
-992
lines changed
playground/src/pages/users
4 files changed +1803
-992
lines changed Original file line number Diff line number Diff line change 7
7
"preview" : " nuxt preview"
8
8
},
9
9
"devDependencies" : {
10
- "@pinia/colada-nuxt" : " 0.0.4 " ,
11
- "@pinia/nuxt" : " ^0.9.0 " ,
12
- "nuxt" : " ^3.15.4 " ,
10
+ "@pinia/colada-nuxt" : " 0.0.6 " ,
11
+ "@pinia/nuxt" : " ^0.10.1 " ,
12
+ "nuxt" : " ^3.16.0 " ,
13
13
"unplugin-vue-router" : " workspace:*"
14
14
},
15
15
"dependencies" : {
16
- "@pinia/colada" : " ^0.13.5 " ,
17
- "pinia" : " ^2.3 .1"
16
+ "@pinia/colada" : " ^0.13.8 " ,
17
+ "pinia" : " ^3.0 .1"
18
18
}
19
19
}
Original file line number Diff line number Diff line change 157
157
}
158
158
},
159
159
"devDependencies" : {
160
- "@pinia/colada" : " ^0.13.5 " ,
160
+ "@pinia/colada" : " ^0.13.8 " ,
161
161
"@posva/prompts" : " ^2.4.4" ,
162
162
"@shikijs/vitepress-twoslash" : " 3.0.0" ,
163
163
"@tanstack/vue-query" : " ^5.66.0" ,
194
194
"vue" : " ^3.5.13" ,
195
195
"vue-router" : " ^4.5.0" ,
196
196
"vue-router-mock" : " ^1.1.0" ,
197
- "vue-tsc" : " ^2.2.0 " ,
197
+ "vue-tsc" : " ^2.2.8 " ,
198
198
"vuefire" : " ^3.2.1" ,
199
199
"webpack" : " ^5.97.1" ,
200
200
"yorkie" : " ^2.0.0"
Original file line number Diff line number Diff line change @@ -57,14 +57,14 @@ const {
57
57
} = useQuery ({
58
58
async queryFn({ signal }) {
59
59
console .log (' [TQ]useUserData' , route .fullPath )
60
- signal .addEventListener (' abort' , (ev ) => {
61
- // console.log('[TQ]useUserData aborted', ev )
60
+ signal .addEventListener (' abort' , () => {
61
+ console .log (' [TQ]useUserData aborted ❌ ' , signal . reason )
62
62
})
63
63
await delay (500 )
64
64
if (simulateError .value ) {
65
65
throw new Error (' Simulated Error' )
66
66
}
67
- signal .throwIfAborted ()
67
+ // signal.throwIfAborted()
68
68
console .log (' ✅ returning data' )
69
69
const user = {
70
70
id: route .params .id ,
You can’t perform that action at this time.
0 commit comments