xiaodanlee / HAVEfun

0 stars 0 forks source link

component #2

Open xiaodanlee opened 6 years ago

xiaodanlee commented 6 years ago

export default class Layout { constructor(test){ this.test = test; this.foo = 'console.log("S");'; }

display(){ return (`

${ this.test }

`); }

}

另一个文件 import App from '../layout/main.js';

let app = new App("test");