这是一个用@vue/cli
制作的Web应用程序。
我想使用vue-svg-loader
来加载嵌入式Svg作为vue组件。
正如vue-svg-loader installation guide所说,我将这段代码放在vue.config.js
中:
module.exports = {
chainWebpack: (config) => {
const svgRule = config.module.rule('svg');
svgRule.uses.clear();
svgRule
.use('vue-svg-loader')
.loader('vue-svg-loader');
},
};
并使用import ViwanMap from '@/assets/ViwanMap.svg';
导入我的Svg文件。
此外,我在包含以下内容的shims-svg.d.ts
文件夹中创建了一个src/
:
import { VNode } from 'vue';
declare global {
type Svg = VNode; // With vue-svg-loader, imported svg is a Vue component.
}
declare module '*.svg' {
const content: Svg;
export default content;
}
此外,还有我的tsconfig.js
:
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}
编译过程会引发此错误:
ERROR in <MY_PROJECT_ROOT>/src/views/Home.vue
12:22 Cannot find module '@/assets/ViwanMap.svg'.
但是,随着svg显示在我的应用中,webpack流程似乎可以正常工作。它似乎只是一个打字稿问题。你知道是什么问题吗? 谢谢:)
答案 0 :(得分:4)
Harshal Patil的答案行之有效,只不过我改用这里的内容:Official Documentation
declare module '*.svg' {
import Vue, {VueConstructor} from 'vue';
const content: VueConstructor<Vue>;
export default content;
}
答案 1 :(得分:1)
您只需要对.svg
文件的模块声明进行少许调整。您的shims-svg.d.ts
文件应为:
declare module '*.svg' {
import { VNode } from 'vue';
// DON'T DECLARE THIS INSIDE GLOBAL MODULE
type Svg = VNode;
const content: Svg;
export default content;
}
请注意,全局范围的扩充只能直接嵌套在外部模块或环境模块声明中。