├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico ├── index.html └── video.mp4 ├── screenshots ├── 1 - Home.jpg ├── 10 - Dashboard.jpg ├── 11 - Subscribers Modal.jpg ├── 12 - Upload Modal.jpg ├── 13 - Video Details.jpg ├── 14 - Videos.jpg ├── 15 - Edit Video Details.jpg ├── 16 - Upload Thumbnail Modal.jpg ├── 17 - Delete Video Modal.jpg ├── 18 - Settings.jpg ├── 19 - Search.jpg ├── 2 - Trending.jpg ├── 20 - Sign in.jpg ├── 21 - Sign up.jpg ├── 3 - Subscriptions.jpg ├── 4 - Watch History.jpg ├── 5 - Search History.jpg ├── 6 - Liked Videos.jpg ├── 7 - Watch.jpg ├── 8 - Comment - Reply.jpg └── 9 - Channel.jpg ├── src ├── App.vue ├── assets │ ├── logo.png │ └── logo.svg ├── components │ ├── NavBar.vue │ ├── SettingsModal.vue │ ├── StudioNavBar.vue │ ├── SubscribersModal.vue │ ├── UploadVideoModal.vue │ └── VideoCard.vue ├── main.js ├── plugins │ └── vuetify.js ├── router │ └── index.js ├── store │ └── index.js └── views │ ├── Auth │ ├── SignIn.vue │ └── SignUp.vue │ ├── Channel │ ├── Home.vue │ └── Index.vue │ ├── History.vue │ ├── Home.vue │ ├── Search.vue │ ├── Studio │ ├── Dashboard.vue │ ├── Details.vue │ ├── Index.vue │ └── Video.vue │ ├── Trending.vue │ └── Watch.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/public/index.html -------------------------------------------------------------------------------- /public/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/public/video.mp4 -------------------------------------------------------------------------------- /screenshots/1 - Home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/1 - Home.jpg -------------------------------------------------------------------------------- /screenshots/10 - Dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/10 - Dashboard.jpg -------------------------------------------------------------------------------- /screenshots/11 - Subscribers Modal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/11 - Subscribers Modal.jpg -------------------------------------------------------------------------------- /screenshots/12 - Upload Modal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/12 - Upload Modal.jpg -------------------------------------------------------------------------------- /screenshots/13 - Video Details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/13 - Video Details.jpg -------------------------------------------------------------------------------- /screenshots/14 - Videos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/14 - Videos.jpg -------------------------------------------------------------------------------- /screenshots/15 - Edit Video Details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/15 - Edit Video Details.jpg -------------------------------------------------------------------------------- /screenshots/16 - Upload Thumbnail Modal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/16 - Upload Thumbnail Modal.jpg -------------------------------------------------------------------------------- /screenshots/17 - Delete Video Modal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/17 - Delete Video Modal.jpg -------------------------------------------------------------------------------- /screenshots/18 - Settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/18 - Settings.jpg -------------------------------------------------------------------------------- /screenshots/19 - Search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/19 - Search.jpg -------------------------------------------------------------------------------- /screenshots/2 - Trending.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/2 - Trending.jpg -------------------------------------------------------------------------------- /screenshots/20 - Sign in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/20 - Sign in.jpg -------------------------------------------------------------------------------- /screenshots/21 - Sign up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/21 - Sign up.jpg -------------------------------------------------------------------------------- /screenshots/3 - Subscriptions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/3 - Subscriptions.jpg -------------------------------------------------------------------------------- /screenshots/4 - Watch History.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/4 - Watch History.jpg -------------------------------------------------------------------------------- /screenshots/5 - Search History.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/5 - Search History.jpg -------------------------------------------------------------------------------- /screenshots/6 - Liked Videos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/6 - Liked Videos.jpg -------------------------------------------------------------------------------- /screenshots/7 - Watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/7 - Watch.jpg -------------------------------------------------------------------------------- /screenshots/8 - Comment - Reply.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/8 - Comment - Reply.jpg -------------------------------------------------------------------------------- /screenshots/9 - Channel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/screenshots/9 - Channel.jpg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/components/NavBar.vue -------------------------------------------------------------------------------- /src/components/SettingsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/components/SettingsModal.vue -------------------------------------------------------------------------------- /src/components/StudioNavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/components/StudioNavBar.vue -------------------------------------------------------------------------------- /src/components/SubscribersModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/components/SubscribersModal.vue -------------------------------------------------------------------------------- /src/components/UploadVideoModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/components/UploadVideoModal.vue -------------------------------------------------------------------------------- /src/components/VideoCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/components/VideoCard.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/views/Auth/SignIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Auth/SignIn.vue -------------------------------------------------------------------------------- /src/views/Auth/SignUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Auth/SignUp.vue -------------------------------------------------------------------------------- /src/views/Channel/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Channel/Home.vue -------------------------------------------------------------------------------- /src/views/Channel/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Channel/Index.vue -------------------------------------------------------------------------------- /src/views/History.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/History.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Search.vue -------------------------------------------------------------------------------- /src/views/Studio/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Studio/Dashboard.vue -------------------------------------------------------------------------------- /src/views/Studio/Details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Studio/Details.vue -------------------------------------------------------------------------------- /src/views/Studio/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Studio/Index.vue -------------------------------------------------------------------------------- /src/views/Studio/Video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Studio/Video.vue -------------------------------------------------------------------------------- /src/views/Trending.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Trending.vue -------------------------------------------------------------------------------- /src/views/Watch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/src/views/Watch.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techreagan/vuetify-youtube-clone-template/HEAD/vue.config.js --------------------------------------------------------------------------------