简体   繁体   中英

How to import ex.js file to ex.component.ts?

 import { jsFile } from '../about/ex1.js';
 constructor() {
  jsFile(); // Method
  }

jsFile position img

I have error in console error console img

 -- In ex1.js --
 export function isFile() {
   // Code
 }

 -- In AboutComponent --
 import { jsFile } from '../about/ex1.js';

 constructor() {
   jsFile(); // Method
 }

Try exporting isFile .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM