Skip to content

Commit 22fb370

Browse files
committed
feat(vue-jsx-vapor): support custom HTMLAttributes for jsx-runtime
1 parent 710127d commit 22fb370

File tree

1 file changed

+2
-1
lines changed
  • packages/vue-jsx-vapor/src/jsx-runtime

1 file changed

+2
-1
lines changed

packages/vue-jsx-vapor/src/jsx-runtime/dom.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1485,7 +1485,8 @@ export type ReservedProps = {
14851485

14861486
export type NativeElements = {
14871487
[K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] &
1488-
ReservedProps
1488+
ReservedProps &
1489+
import('vue').HTMLAttributes
14891490
}
14901491

14911492
interface BaseSyntheticEvent<E = object, C = unknown, T = unknown> {

0 commit comments

Comments
 (0)