gpt4 book ai didi

javascript - 组件名称 "Temp"应始终为多字 vue/multi-word-component-names

转载 作者:行者123 更新时间:2023-12-05 00:24:19 25 4
gpt4 key购买 nike

我是 Vue.js 技术的新手。运行 Vue 应用程序时出现错误。不知道我错在哪里,请尝试修复我的错误。
这是我收到错误的临时文件。

Temp.vue

<template>
<div>
<h1>Hello Ashish</h1>
<h2>{{name}}</h2>
</div>
</template>

<script>
export default {
name: "Temp",
};
</script>

App.vue

<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
<!-- <HomeComp msg="Hello Harshal"/> -->
<!-- <ForLoop/> -->
<Temp/>
</template>

<script>
import HelloWorld from './components/HelloWorld.vue'
// import HomeComp from './components/HomeComp.vue';
// import ForLoop from './components/ForLoop.vue';
import Temp from './components/Temp.vue';


export default {
name: 'App',
components: {
HelloWorld,
// HomeComp,
// ForLoop
// Demo,
Temp
}
}
</script>

<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

最佳答案

如果您不想更改组件名称,请将其添加到 eslintrc.js 的“规则”部分:

'vue/multi-word-component-names': 'off', 
(取自上面@lifecoder 的回复,但由于我的声誉,无法将其添加为评论)

关于javascript - 组件名称 "Temp"应始终为多字 vue/multi-word-component-names,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71205264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com