How to apply initial data attributes to body?

Hello, I was using I think nuxt rc 13 and to set data attribute on body tag I used bodyAttrs like so
useHead({
  bodyAttrs: {
    'data-is-nav-open': 'false',
  },
})

But after updating to Nuxt 3.0.0 (at least that's when I think it broke, pretty sure it worked earlier) it no longer does anything. Any idea how to apply initial data attribute to body tag?
Was this page helpful?