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

@@ -43,7 +43,7 @@
</template>
<div v-show="showingReplies" v-if="replies" class="replies">
<div v-for="reply in replies" :key="reply.commentId" class="w-full">
<Comment :comment="reply" :uploader="uploader" :video-id="videoId" />
<CommentItem :comment="reply" :uploader="uploader" :video-id="videoId" />
</div>
<div v-if="nextpage" @click="loadReplies">
<a v-t="'actions.load_more_replies'" />

View File

@@ -1,6 +1,6 @@
<template>
<div v-if="video && isEmbed" class="absolute top-0 left-0 h-full w-full z-50">
<Player
<VideoPlayer
ref="videoPlayer"
:video="video"
:sponsors="sponsors"
@@ -14,7 +14,7 @@
<ErrorHandler v-if="video && video.error" :message="video.message" :error="video.error" />
<div v-show="!video.error">
<Player
<VideoPlayer
ref="videoPlayer"
:video="video"
:sponsors="sponsors"
@@ -108,7 +108,7 @@
<div class="grid xl:grid-cols-5 sm:grid-cols-4 grid-cols-1">
<div v-if="comments" ref="comments" class="xl:col-span-4 sm:col-span-3">
<Comment
<CommentItem
v-for="comment in comments.comments"
:key="comment.commentId"
:comment="comment"
@@ -140,19 +140,19 @@
</template>
<script>
import Player from "@/components/Player.vue";
import VideoPlayer from "@/components/VideoPlayer.vue";
import VideoItem from "@/components/VideoItem.vue";
import ErrorHandler from "@/components/ErrorHandler.vue";
import Comment from "@/components/Comment.vue";
import CommentItem from "@/components/CommentItem.vue";
import Chapters from "@/components/Chapters.vue";
export default {
name: "App",
components: {
Player,
VideoPlayer,
VideoItem,
ErrorHandler,
Comment,
CommentItem,
Chapters,
},
data() {