Currently, I am trying to make modifications to the CSS rules of an <h1>
element with a reference ref="header"
. However, I have encountered a TypeScript error that is preventing me from doing so.
const header = ref<HTMLElement | null>(null)
onMounted(() => {
header.value.style.color = "red"
})