main.js
import { ajax } from './http.js';
class Test {
constructor() {
this.ajax = false;
}
volumn( { ajax = true } ) {
this.ajax = ajax;
}
}
export default Test;
http.js
export var ajax = ( init ) => {
console.log( init );
};
output.js
define(function () { 'use strict';
class Test {
constructor() {
this.ajax = false;
}
volumn( { ajax = true } ) {
this.ajax = ajax$$1;
}
}
return Test;
});
I think it should not use 'ajax$$1' in method volumn.
main.js
http.js
output.js
I think it should not use 'ajax$$1' in method volumn.