Error Vue.js "Cannot read property 'props' of undefined"
error in mixins: [TurbolinksAdapter]
removed that line and added Vue.use(TurbolinksAdapter); after Vue.use(VueResource); and it all worked
I've got this issue by misspelling a variable in the Vue mixins array. for example:
import file from '../folder/with/file'
export default: {
mixins: [
fil
]
}
should be
import file from '../folder/with/file'
export default: {
mixins: [
file
]
}