0.1.2 • Published 4 years ago

babel-plugin-vue-next-jsx v0.1.2

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

TSDX Bootstrap

const A = () => {};

const a = { a: '1', b: '2' };

const Comp = () => (
  <A style={{ height: '3rem', lineHeight: 4 }} {...a}>
    <div>test</div>
    <div style={{ height: '4px' }}>test</div>
  </A>
);
import { h } from 'vue';

const A = () => {};

const a = {
  a: '1',
  b: '2',
};

const Comp = () =>
  h(
    A,
    {
      style: {
        height: '3rem',
        lineHeight: 4,
      },
      ...a,
    },
    [
      h('div', {}, ['test']),
      h(
        'div',
        {
          style: {
            height: '4px',
          },
        },
        ['test']
      ),
    ]
  );