Description
<template>
<div v-if='test1'/>
</template><script>
export default {
computed: {
test1 () {
console.log('test1')
}
},
meteor: {
$lazy: true,
test2 () {
console.log('test2')
}
}
}
</script>
In the above example:
- 'test1' is triggered once - OK
- 'test2' is triggered once when '$lazy' is true and twice when '$lazy' is false - NOT OK
Expected behaviour:
The 'test2' should not trigger at all when '$lazy' is enabled, or be triggered only once when $lazy is disabled.
Notes:
'Vue.config.meteor.freeze = true' does not fix it either.
Metadata
Metadata
Assignees
Labels
No labels