vue 引用静态json文件

// 引用 相对路径 ./xxx/xxx.json 文件
/**

  • xxx.json
  • {
  • n: 13
  • }
    **/

import(es6)

import jsonData from './xxx/xxx.json'
//使用 jsonData.n

require(node)

const jsonData = require('./xxx/xxx.json')
//使用 jsonData.n

ajax(axios) 异步

axios.get('./xxx/xxx.json').then(res=>{ console.log(res)})
使用 res.data.n
    原文作者:薄雨
    原文地址: https://blog.csdn.net/weixin_39999684/article/details/113384986
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞