vue添加配置文件 超简单
在项目下static目录添加文件config.js 内容格式如下:const config = {ta: "abc"}在项目index.html内引入<script src="/static/config.js"></script>在需要使用的组件中直接config.ta就可以获得数据了...
·
- 在项目下static目录添加文件config.js 内容格式如下:
const config = {
ta: "abc"
}
- 在项目index.html内引入
<script src="/static/config.js"></script> - 在需要使用的组件中直接config.ta就可以获得数据了
更多推荐



所有评论(0)