Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@ant-design-vue/babel-plugin-jsx
Advanced tools
To add Vue JSX support.
English | 简体中文
Install the plugin with:
npm install @ant-design-vue/babel-plugin-jsx -D
Then add the plugin to .babelrc:
{
"plugins": ["@ant-design-vue/babel-plugin-jsx"]
}
transform on: { click: xx }
to onClick: xxx
compatible with Vue 2.x
{ props, on = {}, attrs, ...rest }
will be transformed to { ...props, ...attrs, ...transformOn(on), ...rest }
functional component
const App = () => <div></div>;
with render
const App = {
render() {
return <div>Vue 3.0</div>;
}
};
const App = defineComponent(() => {
const count = ref(0);
const inc = () => {
count.value++;
};
return () => (
<div onClick={inc}>
{count.value}
</div>
);
});
Fragment
const App = () => (
<>
<span>I'm</span>
<span>Fragment</span>
</>
);
const App = () => <input type="email" />;
with a dynamic binding:
const placeholderText = 'email';
const App = () => (
<input
type="email"
placeholder={placeholderText}
/>
);
v-show
const App = {
data() {
return { visible: true };
},
render() {
return <input v-show={this.visible} />;
},
};
v-model
Note: You should pass the second param as string for using
arg
.
<input v-model={val} />
<input v-model={[val, ['trim']]} />
<A v-model={[val, 'foo', ['bar']]} />
Will compile to:
h(A, {
'foo': val,
"fooModifiers": {
"bar": true
},
"onUpdate:foo": $event => val = $event
})
custom directive
const App = {
directives: { custom: customDirective },
setup() {
return () => (
<a
v-custom={[val, 'arg', ['a', 'b']]}
/>
);
},
};
const App = {
setup() {
const slots = {
a: () => <div>A</div>,
b: () => <span>B</span>
};
return () => <A v-slots={slots} />;
}
};
Ant Design Vue |
Vant |
This repo is only compatible with:
FAQs
Babel plugin for Vue 3.0 JSX
The npm package @ant-design-vue/babel-plugin-jsx receives a total of 1,380 weekly downloads. As such, @ant-design-vue/babel-plugin-jsx popularity was classified as popular.
We found that @ant-design-vue/babel-plugin-jsx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.