Support for @vue/compat? #772
snoozbuster
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey all! I'm investigating using this library for a project at my company but one of my requirements is that it needs to be able to run under the Vue 2 compatibility layer (
@vue/compat
). This is not typically an issue for any components that are written for Vue 3 - the only thing they need to do is definedcompatConfig: { MODE: 3 }
on all their components so that the compatibility layer knows to render them unmodified, instead of applying whatever global patches are enabled for the application.I tried to look through the repo for any places where components are instantiated to see if this flag is set, but the one place I found (
<FormKitSchema />
) doesn't have it set. I would be more than happy to submit a PR to add these flags, just please point me to the relevant places! (In fact - are all the relevant places just the handful of components inpackages/vue
?)Beta Was this translation helpful? Give feedback.
All reactions