a.jslet test = function() { }export default { test}b.jsimport { test } from 'a.js'console.log(test) // undefinedimport all from 'a.js'console.log(all) // {test: f}
js import 一個對象同時解構(gòu) 出現(xiàn)undefined
慕運維8079593
2018-12-12 18:18:04