标签:import 匿名 es6 this 变量 基础 comm OLE java
模块化有两个核心:导出和导入
//导出
module.exports={
flag:ture,
test(a,b){
return a+b
}
}
//导入
let aaa=require('module')
let test=aaa.test;
//导出变量
export let name='meng'
export let age=18
let name='meng'
let age=18
export{name,age}
//导出函数
export function test (content){
console.log(tcontent)
}
export class Person{
constructor(name,age){
this.name=name;
this.age=age;
}
}
export default function (){
console.log(111)
}
//在别的地方导入我门就可以自定义名字了
import myFun from "module";
标签:import 匿名 es6 this 变量 基础 comm OLE java
原文地址:https://www.cnblogs.com/my466879168/p/12526782.html