ES6三种暴露方法

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)

你可能感兴趣的:(es6,前端,javascript)