如何避免从Vue组件导入接口时出现TS2614错误

8nuwlpux  于 2023-03-31  发布在  Vue.js
关注(0)|答案(2)|浏览(294)

我在Vue组件脚本部分定义了一个接口,当我试图将其导入另一个类型脚本文件时,出现了以下错误:
TS2614: Module '"../pages/categories/alimentation/index.vue"' has no exported member 'BenefitDetails'. Did you mean to use 'import BenefitDetails from "../pages/categories/alimentation/index.vue"' instead

<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'

export interface BenefitDetails {
  name: string
  frequency: string
  cost: number
  icon: string
  description: string
}

@Component
export default class MyComponent extends Vue {
  // my props ...

  mounted() {}
}
</script>
// Error in import below
import { BenefitDetails } from '~/pages/categories/alimentation/index.vue'

export function getBenefitFrequencyColor({ frequency }: BenefitDetails) {
  switch (frequency) {
    case 'Mensal':
      return 'blue'
    default:
      return 'yellow'
  }
}

我在this问题中找到了VSCode的解决方案,但我使用的是WebStorm。
UPDATE:我不想将接口声明移动到另一个文件

68bkxrlz

68bkxrlz1#

您使用的IDE版本是什么?在2020.3.1中使用您的代码时看不到任何错误(在设置中启用了语言服务|语言和框架|TypeScript):

lh80um4z

lh80um4z2#

尝试在专用ts文件中声明BenefitDetails接口(即:benefitDetails.model.ts)
然后在需要的地方导入BenefitDetails

相关问题