hoistStatic: false,
cacheHandlers: false,
scopeId: null,
+ inline: false,
ssrCssVars: `{ color }`,
bindingMetadata: {
TestComponent: BindingTypes.SETUP,
h('label', { for: 'scope-id' }, 'scopeId')
]),
+ // inline mode
+ h('li', [
+ h('input', {
+ type: 'checkbox',
+ id: 'inline',
+ checked: compilerOptions.inline,
+ onChange(e: Event) {
+ compilerOptions.inline = (e.target as HTMLInputElement).checked
+ }
+ }),
+ h('label', { for: 'inline' }, 'inline')
+ ]),
+
// toggle optimizeImports
h('li', [
h('input', {