import { createApp, ref, defineComponent } from 'vue';
const SuperButton = (props, context) => (
Super
);
SuperButton.inheritAttrs = false;
const App = defineComponent(() => {
const count = ref(0);
const inc = () => {
count.value++;
};
return () => (
Foo {count.value}
);
});
createApp(App).mount('#app');