您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

openURLInBrowser.web.js 204B

1234567891011
  1. // @flow
  2. /**
  3. * Opens URL in the browser.
  4. *
  5. * @param {string} url - The URL to be opened.
  6. * @returns {void}
  7. */
  8. export function openURLInBrowser(url: string) {
  9. window.open(url, '', 'noopener');
  10. }