module.exports = { data: function() { return { foo: '' } }, computed: { bar() { return 'I am bar' } }, created() { this.foo = this.bar } }