UNPKG

press-next

Version:

Vue3 组件库,支持 Composition API

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