*This makes it possible to use Feathers Application services, hooks, etc.*
*To see a list of available Application events, please see:*[Feathers Application API](https://docs.feathersjs.com/api/application.html)
**Examples:**
```javascript
Vue.app.emit('error','This is an error message.')
Vue.app.service('users').create({...})
```
You also have access to the Feathers Socket. Here's how it's setup:
```javascript
importiofrom'socket.io-client
Vue.io = io
Vue.socket = Vue.io('http://localhost:3030')
```
*With this you can use Feathers Socket.io methods, functions, etc. For a more detailed list of what you can do with Feathers Socket.io-client, see:*[Feathers Client > Socket.io](https://docs.feathersjs.com/api/client/socketio.html)