if you create an autorun in the constructor of a blaze component, when @data() is called inside autorun, it will return undefined on the first pass, but the autorun will not be re-run when data has an actual value (it is not a reactive call, I'm guessing until just before onCreated).
if you create an autorun in the constructor of a blaze component, when
@data()
is called inside autorun, it will return undefined on the first pass, but the autorun will not be re-run when data has an actual value (it is not a reactive call, I'm guessing until just beforeonCreated
).