Vue export和import

Posted vxianfeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue export和import相关的知识,希望对你有一定的参考价值。

config/index.js

export default ‘123456‘;

  

import strs from ‘@/config‘;   //此处直接写@config就可以, 如果是export default, import 任意名字都可以




config/index.js

let url="vxianfeng";
let name="微先锋";
export {url,name};

import {url,name} from ‘@/config‘;  //此处变量名称url,name,导出的变量名称要一致  






以上是关于Vue export和import的主要内容,如果未能解决你的问题,请参考以下文章

前端 高级 (二十五)vue2.0项目实战一 配置简要说明代码简要说明Import/Export轮播和列表例子

关于VUE中 import export 和 export default 的注意问题

关于VUE中 import 、 export 和 export default 的注意问题

vue 里面 export/import js文件

Vue export(导出)、import(导入)

Vue 报错/警告 export ‘default‘ (imported as ‘xxx‘) was not found