当ts引入svg时报错 Cannot find module

1,352 阅读1分钟

出现这个报错时,

shims-vue.d.ts文件中加入:

declare module '*.svg' {
  const content: string
  export default content
}

注 :shims-vue.d.ts所在位置:

解决~