Hi, i try functions onCreated, autorun but not working
ViewModel.share({
clock: {
initialTime: new Date(),
onCreated() {
this.initialTime( new Date() );
console.log('onCreated:' , this.initialTime())
},
autorun(){
console.log('autorun:' , this.initialTime())
}
}
});
Template.example1.viewmodel({
share: 'clock'
});
Template.example2.viewmodel({
share: 'clock'
});