You can make your computed property an always updated value, rather than a cached value, by setting the cache property to false:
<script>
export default {
computed: {
field: {
get() {
return Date.now();
},
cache: false,
},
},
};
</script>
You can make your computed property an always updated value, rather than a cached value, by setting the cache property to false:
<script>
export default {
computed: {
field: {
get() {
return Date.now();
},
cache: false,
},
},
};
</script>