JC Puno
JC Puno
Anybody experienced the error of `TypeError: defaultClientConfig is undefined` here is my plugin: ```typescript import {Context} from '@nuxt/types' import { provide, onGlobalSetup, defineNuxtPlugin } from '@nuxtjs/composition-api' import {DefaultApolloClient} from '@vue/apollo-composable/dist'...
We are actually experiencing this issue but we don't use `forSchemaOptions` property. We are setting up our `schemaRegistry`: ``` public registry = new SchemaRegistry({ auth: { ... }, host: {...
I actually encountered an issue as well, when using `nuxt-ts build` or `nuxt-ts generate`. It required me to install a bunch of dependencies that are already integrated with nuxt like...
> I've workaround the issue by ignoring some files. > > ``` > typescript: { > typeCheck: { > eslint: { > files: './**/*.{ts,js,vue}', > options: { > ignorePattern: ['./components/**/*.spec.ts'],...
Have you guys found a way to resize the `FadeLoader`?
What do you mean by disabled? For example you have a long list of items and you want to move the top item to the end however the browser scroll...
> have a look into scroll-sensitivity, Temp fix - I know - but it lets you scroll if you drag the element to the edge of the screen Sorry but...
> ``` > .v-alert { > transition: none !important; >} > > ``` This actually fixed my issue however dragging and dropping seems to be sluggish, I am using `v-expansion-panel`...
Just an update looks like `c8` coverage is now working as expected. We refactored our functional test and it seems that the issue was in relation to our messaging queue...
I have a workaround on this to trigger the event upon disconnect, I used jona4life's code above and tweak it a little bit: ``` const Ws = use('Ws'); class ChatController...