(key: string)
| 437 | } |
| 438 | |
| 439 | function unregister (key: string) { |
| 440 | const data = nuxtApp._asyncData[key] |
| 441 | if (data?._deps) { |
| 442 | data._deps-- |
| 443 | // clean up memory when it no longer is needed |
| 444 | if (data._deps === 0) { |
| 445 | data?._off() |
| 446 | } |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | // setup watchers/instance |
| 451 | const hasScope = getCurrentScope() |
no outgoing calls
no test coverage detected
searching dependent graphs…