feathers-vue-rx
v0.1.5
Published
Go to the [full documentation](https://rubyrubenstahl.github.io/feathers-vue-rx/).
Downloads
4
Readme
Feathers Vue Rx
Documentation
Go to the full documentation.
Install
npm install --save feathers-vue-rx
Register in Vue
import FeathersVueRx from "feathers-vue-rx";
Vue.use(FeathersVueRx)
Use
<FeathersApp url="http://localhost:3030">
<div>
<h2>Users</h2>
<FeathersFind service="users">
<template slot="loaded" slot-scope="{ data: users }">
<ul v-for="user in users" :key="user._id">
<li> {{ user.username}} </li>
</ul>
</template>
</FeathersFind>
</div>
</FeathersApp>