We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! I installed this package on my Nuxt application, My page:
<template> <flipbook class="flipbook" :pages="images"></flipbook> </template> <script> export default { layout: "main", data(){ return { images: [ '@/assets/images/famille-1.jpg', '@/assets/images/famille-2.jpg', '@/assets/images/famille-3.jpg', '@/assets/images/famille-4.jpg', '@/assets/images/famille-5.jpg', '@/assets/images/famille-6.jpg', ] } } }; </script> <style scoped> .flipbook { width: 90vw; height: 90vh; } </style>
I have no message, no error... but no flipbook :( Thanks a lot!
The text was updated successfully, but these errors were encountered:
'@/assets/images/famille-1.jpg',
These will not be resolved. Try using require like below;
require('@/assets/images/famille-1.jpg').default,
Sorry, something went wrong.
No branches or pull requests
Hi!
I installed this package on my Nuxt application,
My page:
I have no message, no error... but no flipbook :(
Thanks a lot!
The text was updated successfully, but these errors were encountered: