木何鱼2020-03-11
如何在vue.js应用程序中访问JSON对象我是新手
import json from './json/data.json'
JSON文件已加载,现在我必须访问其中的对象
TypeScript项目(我在SFC vue组件中有 TypeScript),需要将resolveJsonModule编译器选项设置为true。
resolveJsonModule
true
在tsconfig.json中:
{ "compilerOptions": { ... "resolveJsonModule": true, ... }, ... }
快乐的编码:)
(来源https://www.typescriptlang.org/docs/handbook/compiler-options.html)
Newest Answer
TypeScript项目(我在SFC vue组件中有 TypeScript),需要将
resolveJsonModule
编译器选项设置为true
。在tsconfig.json中:
快乐的编码:)
(来源https://www.typescriptlang.org/docs/handbook/compiler-options.html)