简体   繁体   English

如何修复 vue 脚本中的“eslint(no-unused-vars)”

[英]How to fix “eslint(no-unused-vars)” in vue script

I am trying to run a server in a Vuejs App but i have troubles with eslint message appreciate your help to fix them我正在尝试在 Vuejs 应用程序中运行服务器,但我遇到了 eslint 消息的问题,感谢您帮助修复它们

This is my Json file:这是我的 Json 文件:

 {
   "name": "blog-frontend",
   "version": "0.1.0",
   "private": true,
   "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
 },
  "dependencies": {
   "axios": "^0.19.0",
   "core-js": "^3.3.2",
   "vue": "^2.6.10",
   "vue-router": "^3.0.6"
 },
  "devDependencies": {
   "@vue/cli-plugin-babel": "^4.0.0",
   "@vue/cli-plugin-eslint": "^4.0.0",
   "@vue/cli-plugin-router": "^4.0.0",
   "@vue/cli-service": "^4.0.0",
   "babel-eslint": "^10.0.1",
   "eslint": "^5.16.0",
   "eslint-plugin-vue": "^5.0.0",
   "vue-template-compiler": "^2.6.10"
 }
}

This is the message on console:这是控制台上的消息:

 ERROR  Failed to compile with 1 errors                                                                             5:11:39 PM
 error  in ./src/views/Home.vue

Module Error (from ./node_modules/eslint-loader/index.js):
error: 'server' is defined but never used (no-unused-vars) at src\views\Home.vue:40:9:
  38 | <script>
  39 | // @ is an alias to /src
> 40 | import {server} from "@/utils/helper";
     |         ^
  41 | import axios from "axios";
  42 |
  43 | export default {


error: 'id' is defined but never used (no-unused-vars) at src\views\Home.vue:58:16:
  56 |         .then(data => (this.posts = data.data));
  57 |     },
> 58 |     deletePost(id) {
     |                ^
  59 |       axios.delete('${sever.baseURL}/blog/delete?postID=${id}').then(data => {
  60 |         console.log(data);
  61 |         window.location.reload();


2 errors found.

 @ ./src/router.js 3:0-41 19:15-28
 @ ./src/main.js
 @ multi (webpack)-dev-server/client?http://192.168.1.152:8080/sockjs-node (webpack)/hot/dev-server.js ./src/main.js

Home.vue主页.vue

<script>
 // @ is an alias to /src
 import {server} from "@/utils/helper";
 import axios from "axios";

export default {
 data() {
  return {
   posts: []
 };
},
created() {
 this.fetchPosts();
},
methosd: {
 fetchPosts() {
  axios
    .get('${server.baseURL}/blog/posts')
    .then(data => (this.posts = data.data));
},
deletePost(id) {
  axios.delete('${sever.baseURL}/blog/delete?postID=${id}').then(data => {
    console.log(data);
    window.location.reload();
   });
  }
 }
};
</script>

helper.js助手.js

export const server = {
 baseURL: 'http:localhost:3000'
}

main.js main.js

import Vue from 'vue'
import App from './App.vue'
import router from './router'

Vue.config.productionTip = false

new Vue({
 router,
  render: h => h(App)
}).$mount('#app')

I expect that enough info and you can help me to fix them我希望有足够的信息,您可以帮助我修复它们

Use string template to build your url correctly like below;使用字符串模板正确构建您的 url,如下所示;

axios.delete(`${server.baseURL}/blog/delete?postID=${id}`).then(data => {

Then server and id will be used and errors will be fixed.然后将使用serverid并修复错误。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM