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
The usage mentioned here is not working for me.
"vue": "2.6.12", "vue-videojs7": "1.0.2"
When I tried, I get the Vue's unknown component error: [Vue warn]: Unknown custom element: <video-player> - did you register the component correctly?
[Vue warn]: Unknown custom element: <video-player> - did you register the component correctly?
I Inspected the code and find there is no export for videoPlayer, only as default.
videoPlayer
Add this to vue-videojs7/index.js file:
vue-videojs7/index.js
export { videoPlayer }
import videojs7 from 'vue-videojs7' export default { components: { videoPlayer: videojs7.videoPlayer } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem
The usage mentioned here is not working for me.
When I tried, I get the Vue's unknown component error:
[Vue warn]: Unknown custom element: <video-player> - did you register the component correctly?
I Inspected the code and find there is no export for
videoPlayer
, only as default.Possible solutions
1. For the author
Add this to
vue-videojs7/index.js
file:2. For users of library
The text was updated successfully, but these errors were encountered: