mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
41 lines
687 B
JavaScript
41 lines
687 B
JavaScript
import { createApp, ref, defineComponent } from 'vue';
|
|
|
|
const SuperButton = (props, context) => (
|
|
<div class={props.class}>
|
|
Super
|
|
<button
|
|
on={{
|
|
click: () => {
|
|
context.emit('click');
|
|
},
|
|
}}
|
|
>
|
|
{ props.buttonText }
|
|
</button>
|
|
</div>
|
|
);
|
|
|
|
SuperButton.inheritAttrs = false;
|
|
|
|
const App = defineComponent(() => {
|
|
const count = ref(0);
|
|
const inc = () => {
|
|
count.value++;
|
|
};
|
|
|
|
return () => (
|
|
<>
|
|
Foo {count.value}
|
|
<SuperButton
|
|
buttonText="VueComponent"
|
|
class="xxx"
|
|
on={{
|
|
click: inc,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
});
|
|
|
|
createApp(App).mount('#app');
|