-
Notifications
You must be signed in to change notification settings - Fork 264
Should MountingOptions that apply properties to createApp vm be prefixed? #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
So far everything is more of a "get something working and go from there" than an ideal solution, but thanks for picking up on some of the potential problems. Any ideas to work around these? |
mixins plugins provides data |
An alternative to localVue (not sure if such a concept will exist in Vue 3) could be something like: const wrapper = mount(Foo, {
globals: {
plugins: [...],
mixins: [...]
}
}) |
Yeah, not a bad idea, I like it :) |
Closed in #31 |
There are a few properties currently that modify the vm returned from
createApp
, but could be confusing, as the mounted vue component may have the same properties.Currently these are:
The text was updated successfully, but these errors were encountered: