Valentin Fritz
Valentin Fritz
Closing this issue as all items have been resolved with v3 except for the default attributes, it will be handled with #6
I've just faced the same issue and resolved it this way (less random than waiting 500ms): ```typescript const pageReady: Ref = ref(false); onNuxtReady(() => { pageReady.value = true; }); ```
Sorry for the delay, looks good enough for me! Thanks for the contribution.
Here is a snipped of my code: ```csharp public abstract class ProviderTests { protected readonly CustomApiClient CustomApiClient; protected ProviderTests() { var testEnv = Environment.GetEnvironmentVariable("TEST_ENV"); var configuration = new ConfigurationBuilder() .AddJsonFile(testEnv...