美文网首页
ES2015 Module

ES2015 Module

作者: zshanjun | 来源:发表于2017-04-18 19:32 被阅读29次
//export.js

// export class TaskCollection {
//  constructor(tasks = []) {
//      this.tasks = tasks
//  }

//  dump() {
//      console.log(this.tasks);
//  }
// }

// export let foo = 'bar';


// export default class TaskCollection {
//  constructor(tasks = []) {
//      this.tasks = tasks
//  }

//  dump() {
//      console.log(this.tasks);
//  }
// }

// export let foo = 'bar';


export default class TaskCollection {
    constructor(tasks = []) {
        this.tasks = tasks
    }

    dump() {
        console.log(this.tasks);
    }
}



//main.js

// import {TaskCollection, foo} from './TaskCollection';
// import TaskCollection, {foo} from './TaskCollection';
import TaskCollection from './TaskCollection';

new TaskCollection([
    'one',
    'two',
    'three'
]).dump();


相关文章

网友评论

      本文标题:ES2015 Module

      本文链接:https://www.haomeiwen.com/subject/zgsqzttx.html