We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 258ff1e commit 8192465Copy full SHA for 8192465
packages/compiler-vapor/src/generators/component.ts
@@ -93,17 +93,17 @@ export function genCreateComponent(
93
}
94
95
96
-type InlineHandlerValue = {
+type InlineHandler = {
97
name: string
98
value: SimpleExpressionNode
99
100
101
function processInlineHandlers(
102
props: IRProps[],
103
context: CodegenContext,
104
-): [Record<string, null>, InlineHandlerValue[]] {
+): [Record<string, null>, InlineHandler[]] {
105
const ids: Record<string, null> = Object.create(null)
106
- const handlers: InlineHandlerValue[] = []
+ const handlers: InlineHandler[] = []
107
const staticProps = props[0]
108
if (isArray(staticProps)) {
109
for (let i = 0; i < staticProps.length; i++) {
0 commit comments