Questions about how to write in the source code of vue

el?: string | Element what does this mean?

Aug.14,2021

static Type Checker
vue uses flow

typescript


if you are looking at version 2.+, you see the writing of Flow Click to view
as a type restriction:
question mark indicates that this parameter can be omitted.
string and Elelment are types (customizable)
..

Menu