From 4891c57bbd3c83b2d331883b7435d97c7fe3412f Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 17 Nov 2020 10:45:35 +0530 Subject: [PATCH] Preferences + Format code. --- .gitignore | 1 - README.md | 5 + src/App.vue | 54 +++++--- src/Constants.js | 4 +- src/components/Channel.vue | 70 ++++++---- src/components/Preferences.vue | 79 +++++++++++ src/components/TrendingPage.vue | 103 ++++++++------ src/components/WatchVideo.vue | 237 ++++++++++++++++++-------------- src/main.js | 36 ++--- src/registerServiceWorker.js | 2 +- src/router/router.js | 7 +- 11 files changed, 379 insertions(+), 219 deletions(-) create mode 100644 src/components/Preferences.vue diff --git a/.gitignore b/.gitignore index 403adbc1..11f5d714 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ node_modules /dist - # local env files .env.local .env.*.local diff --git a/README.md b/README.md index 49bb026a..6f998d8a 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,29 @@ # piped ## Project setup + ``` npm install ``` ### Compiles and hot-reloads for development + ``` npm run serve ``` ### Compiles and minifies for production + ``` npm run build ``` ### Lints and fixes files + ``` npm run lint ``` ### Customize configuration + See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/src/App.vue b/src/App.vue index 90b5f638..ede0213b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,33 +1,43 @@