码迷,mamicode.com
首页 > 其他好文 > 详细

es6 import笔记

时间:2018-03-21 17:29:16      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:font   uri   ini   pac   ola   text   tor   ack   set   


 export输出:

 

// profile.js
var firstName = ‘Michael‘;
var lastName = ‘Jackson‘;
var year = 1958;

export {firstName, lastName, year};

 

 

function v1() { ... }
function v2() { ... }

export {
  v1 as streamV1,
  v2 as streamV2,
  v2 as streamLatestVersion
};

 

 

// main.js
import {firstName, lastName, year} from ‘./profile.js‘;

function setName(element) {
  element.textContent = firstName + ‘ ‘ + lastName;
}

 

整体加载:

import * as circle from ‘./circle‘;

console.log(‘圆面积:‘ + circle.area(4));
console.log(‘圆周长:‘ + circle.circumference(14));


 export default:

// export-default.js
export default function () {
  console.log(‘foo‘);
}

 

// import-default.js
import customName from ‘./export-default‘;
customName(); // ‘foo‘

 

es6 import笔记

标签:font   uri   ini   pac   ola   text   tor   ack   set   

原文地址:https://www.cnblogs.com/intbingbing/p/8617991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!