[Vuejs]-Module parse failed: Unexpected token . You may need an additional loader to handle the result of these loaders

0👍

a?.b is the "optional chaining" operator, which returns undefined when one of the chained properties is undefined or null.

message?.length === 1 could be replaced by message && message.length === 1.

Leave a comment