99:15 error Component name “Login“ should always be multi-word vue/multi-word-component-names

1、说明你的组件名不是多个单词组成的,你要把组件改成多个单词,将Login改成LoginView。

2、或者可以禁用vue的严格模式。

在项目根目录下的vue.config.js文件中

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({

  transpileDependencies: true,
  lintOnSave: false  //加上这个配置

})