I'm trying to use beforeEnter with Vue Router, but I encountered an error:
TS2322: Type 'string | symbol | null | undefined' is not assignable to type 'string'. Type 'undefined' is not assignable to type 'string'.
17 | beforeEnter(to, from, next) {
18 | // console.log(to)
19 | document.title = to.name
| ^^^^^^^^^^^^^^
20 | console.log(document.title)
21 | }
22 | }
I'm unsure on how to resolve this issue.