yakudik

Results 4 comments of yakudik

Faced with same problem but with worse consequences: this exception break route navigation. Solve this problem via `NuxtErrorBoundary` component (https://nuxt.com/docs/api/components/nuxt-error-boundary)

Encountered with same warning but in usage of our UI kit. We have a layout component (VDefaultLayoutHeader) with code ```vue const refHeader = useTemplateRef('refHeader') ... ``` Library is building without...

@edison1105 It's true, this warning don't be showed in production, but the main problem is that we use templateRefs not only for VDefaultLayoutHeader. We also have VDataTableTr, for example. This...

> [@yakudik](https://github.com/yakudik) > > > -const refHeader = useTemplateRef('refHeader') > +const headerRef = useTemplateRef('refHeader') // use a diff var name is a workaround > > > > > ... >...