feathers-vue-rx

0.1.5 • Public • Published

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>

/feathers-vue-rx/

    Package Sidebar

    Install

    npm i feathers-vue-rx

    Weekly Downloads

    11

    Version

    0.1.5

    License

    ISC

    Unpacked Size

    1.06 MB

    Total Files

    71

    Last publish

    Collaborators

    • rubyrubenstahl