更新
主要做了 xxx 更新
主要做了 xxx 更新
show hel
Use the power of React to create interactive blog posts.
<button onClick={async function(){
  const helMicro = await import('hel-micro');
  const lib = await helMicro.preFetchLib('hel-tpl-remote-lib');
  alert(lib.num.random(22));
}}>call remote method!(latest version)</button>
<button onClick={async function(){
  const helMicro = await import('hel-micro');
  const lib = await helMicro.preFetchLib(
    'hel-tpl-remote-lib', '2.0.0',
  );
  alert(lib.num.random(22));
}}>选择版本 2.0.0</button>
<button onClick={async function(){
  const helMicro = await import('hel-micro');
  const lib = await helMicro.preFetchLib(
    'hel-tpl-remote-lib', '2.0.1',
  );
  alert(lib.num.random(22));
}}>选择版本 2.0.1</button>