1👍
✅
The problem isn’t related to vue-resources and cannot be affected by it, unless it caused an error on initialization.
created
is lifecycle hook and not user-defined method, therefore it shouldn’t be specified in methods
.
It should be:
export default {
name: 'Users',
created: function(){
console.log('Test Message');
}
}
Source:stackexchange.com