0.1.5 • Published 4 years ago

feathers-vue-rx v0.1.5

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

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>