ES6个人学习整理(九)——Module

export

// 变量
export let a = 1;
// 常量
export const A = 1;
// function
export function fun() {return 'fun';};
// class
export class Cla {
    constructor() {}
};
// default 
export default function () {return 'default';};

// 假设sub模块继承sup模块
// sub.js
export * from './sup';
// 将sup中的属性和方法(default除外)

// 也可将sup中的属性和方法改名后再输出
export * as eg from './sup'

import

// 全部
import * as eg from './xx' 
// 指定
import {a, A, fun, Cla, default as eg} from './xx'
// 导入一个模块的同时进行执行
import './xx'

你可能感兴趣的:(ES6)