look at the vuejs source code, this code is a little difficult to understand, please help to interpret it, thank you! The
code is in lines 7653-7661 of the Vue.js v2.5.16 source code
var startClass = isAppear & & appearClass
? appearClass
: enterClass;
var activeClass = isAppear & & appearActiveClass
? appearActiveClass
: enterActiveClass;
var toClass = isAppear & & appearToClass
? appearToClass
: enterToClass;
what does isAppear mean here? What kind of function does the code of this ternary operator achieve as a whole?