[Vuejs]-What is this configuration error with Vue.js eslint

0👍

Houps! i just forgot the return statement:

export default {
  data () {
    return {
      person: {
        firstname: 'John',
        lastname: 'Doe'
      },
      message: 'Welcome!'
    }
  }
}

Leave a comment