Bump eslint-plugin-vue from 7.20.0 to 8.3.0 (#722)

* Bump eslint-plugin-vue from 7.20.0 to 8.3.0

Bumps [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) from 7.20.0 to 8.3.0.
- [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
- [Commits](https://github.com/vuejs/eslint-plugin-vue/compare/v7.20.0...v8.3.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-vue
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Refractor component names.

For vue/multi-word-component-names

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: FireMasterK <20838718+FireMasterK@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2022-01-13 05:12:06 +00:00
committed by GitHub
parent fc4978ec03
commit 5d8ae14db7
11 changed files with 68 additions and 34 deletions

View File

@@ -9,7 +9,7 @@ const routes = [
{
path: "/preferences",
name: "Preferences",
component: () => import("../components/Preferences.vue"),
component: () => import("../components/PreferencesPage.vue"),
},
{
path: "/results",
@@ -19,7 +19,7 @@ const routes = [
{
path: "/playlist",
name: "Playlist",
component: () => import("../components/Playlist.vue"),
component: () => import("../components/PlaylistPage.vue"),
},
{
path: "/:path(v|w|embed|shorts|watch)/:v?",
@@ -29,7 +29,7 @@ const routes = [
{
path: "/:path(channel|user|c)/:channelId/:videos?",
name: "Channel",
component: () => import("../components/Channel.vue"),
component: () => import("../components/ChannelPage.vue"),
},
{
path: "/login",