Six Questions for Edd Yerburgh, author of Testing Vue.js Applications
By Frances Lefkowitz
Edd Yerburgh is a JavaScript developer and Vue core team member. He’s the main author of the Vue Test Utils library and is passionate about open source tooling for testing component-based applications. He’s currently working as a software engineer at the BBC in London
From Testing Vue.js Applications by Edd Yerburgh Part 2 covers: Testing input forms Limitations of jsdom Save 37% off Testing Vue.js Applications. Just enter code fccyerburgh into the discount code box at checkout at manning.com. Continuing on with how to… Continue Reading →
From Testing Vue.js Applications by Edd Yerburgh
Part 1 covers:
From Vue.js in Action by Erik Hanchett
Because computed properties are typically calculated using instance data, their return value is updated automatically when the underlying data changes. Any view markup bound to the computed property is updated to reflect the new value as well.
This behavior is at the heart of the update cycle within the greater Vue instance lifecycle—let’s have a look…
From Vue.js in Action by Erik Hanchett
This article explores how to get started with Vue.js and gives insight into some of its core workings.