每个页面只会导入import中绑定以及被用到的代码. 也就是说并不会加载不需要的代码!
import
import cowsay from 'cowsay-browser' export default () => <pre> {cowsay.say({ text: 'hi there!' })} </pre>