@nx-js/bindable-middleware

1.0.2 • Public • Published

The bindable middleware

The bindable middleware adds the $bindable method to elements, which can be used to make any element bindable.

  • name: bindable
  • middleware dependencies: attributes
  • all middleware dependencies: observe, attributes
  • type: component or content middleware
  • ignores: text nodes
  • docs

Installation

npm install @nx-js/bindable-middleware

Usage

const component = require('@nx-js/core')
const observe = require('@nx-js/observe-middleware')
const attributes = require('@nx-js/attributes-middleware')
const style = require('@nx-js/bindable-middleware')

component()
  .use(observe)
  .use(attributes)
  .use(bindables)
  .use(elem => elem.$bindable({mode: 'two-way', on: 'input'}))
  .register('bindable-comp')
<bindable-comp name="prop" bind></bindable-comp>

Package Sidebar

Install

npm i @nx-js/bindable-middleware

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • solkimicreb