vue-recomputed
v0.0.1
Published
Recomputable computed properties in Vue
Downloads
182
Readme
VueRecomputed
Recomputable computed properties in Vue
⚠️ You probably don't need this, please, first check this issue and this comment and this other one as well
Installation
npm install vue-recomputed
Usage
This is a silly example to showcase the API. Never do this kind of thigs:
export default {
recomputed: {
currentTime() {
// you have access to the component as with computed properties
return Date.now()
},
},
methods: {
updateTime() {
this.$recompute('currentTime')
},
},
}