vue 引入ts文件后,报TS2614: Module '"~/api/common"' has no exported member 'getList'. Did you mean to use 'import getList from "~/api/common"' instead?

先安装 yarn add @typescript-eslint/parser -D 

然后在.eslintrc配置文件中加入

parserOptions: {
    parser: '@typescript-eslint/parser',
 },
原文地址:https://www.cnblogs.com/-liujia/p/14830793.html