mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-12 19:28:22 +00:00
eslint rule vue/no-undef-components makes build fail
This commit is contained in:
parent
019a88f65a
commit
04c41a4dde
@ -4,4 +4,9 @@ module.exports = {
|
||||
node: true,
|
||||
},
|
||||
extends: ["plugin:vue/vue3-recommended", "eslint:recommended", "@unocss", "plugin:prettier/recommended"],
|
||||
rules: {
|
||||
"vue/no-undef-components": ["error", {
|
||||
ignorePatterns: ["router-link", "router-view", "i18n-t", "ErrorHandler"]
|
||||
}],
|
||||
},
|
||||
};
|
||||
|
@ -50,6 +50,7 @@
|
||||
</template>
|
||||
<div v-show="showingReplies" v-if="replies" class="replies">
|
||||
<div v-for="reply in replies" :key="reply.commentId" class="w-full">
|
||||
<!-- eslint-disable-next-line vue/no-undef-components -->
|
||||
<CommentItem :comment="reply" :uploader="uploader" :video-id="videoId" />
|
||||
</div>
|
||||
<div v-if="nextpage" class="cursor-pointer" @click="loadReplies">
|
||||
|
Loading…
Reference in New Issue
Block a user