import { createApp, defineComponent, reactive } from 'vue'; import { type VueJSXPluginOptions } from '@vue/babel-plugin-jsx'; export { VueJSXPluginOptions }; export const compilerOptions: VueJSXPluginOptions = reactive({ mergeProps: true, optimize: false, transformOn: false, enableObjectSlots: true, resolveType: false, }); const App = defineComponent({ setup() { return () => [ <>

Vue 3 JSX Explorer

History
Options ↘
, ]; }, }); export function initOptions() { createApp(App).mount(document.getElementById('header')!); }