Import JSON into VueJS
Install json loader with
npm install json-loader --save
then in your webpack.config file add this loader
module: {
loaders: [
{
test: /\.json/,
loader: 'json',
}
],
}
Go to SCR and find a file named shims-vue.d.ts and add a JSON module like this.
declare module '*.json'
{
const value: { [key: string]: any };
export default value;
}