-
Notifications
You must be signed in to change notification settings - Fork 88
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
Breaking change in 3.5 #85
Comments
Thanks a lot for the feedback, this issue is due to exporting the
For the error you are reporting, you can use the Vue.createApp({
data() { return {
value: 'https://example.com',
test: 'Hello World'
}},
components: {
QrcodeVue: QrcodeVue.default,
},
}).mount('#root') 非常感谢反馈问题,这个问题是由于在 3.5 版本中独立导出 针对您的报错,可以使用 |
Thanks a lot for the explanation, it worked. |
Sorry, I need to reopen and I discovered why my code is not working anymore (I actually did figure out using Adding |
This is due to the data type problem. Try to use |
Great, works now! |
Hi, this following code used to work in 3.4: https://jsfiddle.net/d3ugkhaw/
Whereas it does not display any qr code in 3.5: https://jsfiddle.net/Ld42fm8z/
How should the snipped be adjusted to make it work in 3.5?
The text was updated successfully, but these errors were encountered: