Error Vue.js "Cannot read property 'props' of undefined" Error Vue.js "Cannot read property 'props' of undefined" vue.js vue.js

Error Vue.js "Cannot read property 'props' of undefined"


error inmixins: [TurbolinksAdapter]

removed that line and addedVue.use(TurbolinksAdapter);afterVue.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    ]}