export function updateDocumentTitle(title = '和平赛场') {
  // #ifdef H5
  const cb = () => {
    console.log('document.title', document.title);
    document.title = title;
  };
  cb();
  setTimeout(() => {
    cb();
  }, 100);
  // #endif
}
