( VUE Computed ) Property 'XXX' does not exist on type 'CreateComponentPublicInstance'
computed property classes should declare a type, like this
computed: {
classes ():any {
return {
"navbar--on-scroll": this.onScroll,
"navbar--active": this.navbarActive
}
}
}