سؤال

How to update the title tag in the Head ?

enter image description here

Really don't want to mess around with the DOM updating with javascript!

هل كانت مفيدة؟

المحلول

To update <title> tag in custom component:

import { Meta, Title } from 'location-to-head-component/lib/components/Head';

Then return:

return (
        <>
            <Title>you-title-here - {yourVar}</Title>
            //page content here
        </>
    );

OR:

useEffect(() => {
      document.title = 'you-title-here - '+yourVar;
   }, [title]);
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top