-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot read property 'create' of undefined #2
Comments
+1 Any luck? |
+1 |
nope still nothing. I think the documentation is lacking how we register services |
You can use |
@dopyoman That would be the following code for your initialization: // your code: create feathers instance
const feathers = Feathers()
.configure(socketio(socket))
.configure(hooks())
.configure(authentication({storage: window.localStorage}))
// new code: register service
feathers.service("messages"); after you've changed the code you can refer to your service as |
Yeah, you have to manually register every service |
I've basically just run through the set up and I cant seem to get the services bound to vue. Any suggestions?
Here's my client setup.
Heres the component that is calling it.
Error in browser
The text was updated successfully, but these errors were encountered: