If I have a custom element
Polymer({
name: 'dane',
computed: {
message: 'greet(name)'
},
greet: function(name) {
return 'hello ' + name + Date.now();
}
})
When I change name
polymer will automatically recompute message
, but is there a way to recompute message
without changing name
?