0.2.4 • Published 2 years ago

babel-sugar-v-bind-sync v0.2.4

Weekly downloads
12
License
MIT
Repository
github
Last release
2 years ago

babel-sugar-v-bind-sync

Syntactic sugar for v-bind sync modifier in JSX.

Babel Compatibility Notes

This repo is only compatible with Babel 7.x, for 6.x please use njleonzhang/babel-plugin-vue-jsx-sync

Usage

Install the dependencies:

# for yarn:
yarn add -D babel-sugar-v-bind-sync
# for npm:
npm install babel-sugar-v-bind-sync --save-dev

In your .babelrc:

module.exports = {
  plugins: [require('babel-sugar-v-bind-sync')]
}

Details

This plugin adds v-bind sync modifier to the JSX and tries to mirror the same behavior as in vue-template-compiler, with a few differences:

  1. You should use underscore (_) instead of dot (.) for sync modifier (prop_sync={this.bar}).
  2. It is recommended to use camelCase version of it (propName_sync) in JSX, but you can use kebab-case too (prop-name_sync).
export default {
  data() {
    return {
      bar: 'naz',
    };
  },
  render(h) {
    return (
      <div>
        <component foo_sync={this.bar} />
      </div>
    );
  },
};
0.2.3

2 years ago

0.2.4

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.1

3 years ago

0.1.0

3 years ago