New Movie Modal Component
You have now created an amazing Netflix clone. How about adding more videos? This section, and the next, show you how to add a movie by uploading its title, banner, and trailer.
Start with adding an UploadModal
component with the following content for the upload modal:
The component contains a form with the following elements:
An
input
class fortitle
:A
button
class for uploadingbanner
:A
button
class for uploadingvideo
:A
button
class for a Submit button:Two
span
tags to show the IDs of the uploaded items:
To show a modal for an upload, leverage Vue's third-party library Sweet Modal.
Last updated