vue: List of breaking changes in 1.0.18

Vue.js version

1.0.18

“Bug”

I am the maintainer of vue-google-maps and I saw multiple breaking changes in vue 1.0.18.

I was able to identify one : “If you have a data function that returns undefined then vue is absolutely broken”, I know it can’t be considered as a bug, but still it’s not mentioned in the release report.

But I still have problems and can’t update my library to work with vue 1.0.18. Could you make a list of all breaking changes so I can fix them ?

Thank you very much

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Comments: 16 (7 by maintainers)

Most upvoted comments

Everything is fixed in vue-google-maps

From the Docs:

When defining a component, data must be declared as a function that returns the initial data object

Looks like you’re making the same mistake in this file too: cluster.vue

When you’re inside the data function, don’t hang values directly off of this. Instead return the values you want to set as an object.