ES6三种暴露方法

发布时间:2023年12月21日

1.多行暴露(分行暴露)

导出

//test.js
export function test1(){
    console.log('测试分别导出test1');
}
export function test2(){
    console.log('测试分别导出test2');
}

导入:


//index.js
import {test1, test2} from './test.js'  //文件路径

二:统一暴露

?导出:

//test.js
 
function test1(){
    console.log('统一暴露test1');
}
function test2(){
    console.log('统一暴露test2');
}
export {test1, test2}

导入:

//index.js
 
import {test1, test2} from 'test.js'

三 默认暴露

导出

//lang.js
export default{
    chinese(backup,formData){
       console.log('中文')     
    },
    english(backup,formData){
       console.log('英文')
    }
}

导入:

import language from 'lang.js'  //from 后文件路径


//使用
language.chinese(val1,val2)

文章来源:https://blog.csdn.net/cjxIt/article/details/135124187
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。