(detached?: boolean)
| 201 | * @see {@link https://vuejs.org/api/reactivity-advanced.html#effectscope} |
| 202 | */ |
| 203 | export function effectScope(detached?: boolean): EffectScope { |
| 204 | return new EffectScope(detached) |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Returns the current active effect scope if there is one. |
no outgoing calls