]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: export `jsxs` type (#13463)
authorlinzhe <40790268+linzhe141@users.noreply.github.com>
Fri, 13 Jun 2025 00:24:27 +0000 (08:24 +0800)
committerGitHub <noreply@github.com>
Fri, 13 Jun 2025 00:24:27 +0000 (08:24 +0800)
packages/vue/jsx-runtime/index.d.ts

index a52ac66a0dfb256c17de5160ac7eb41c003319f9..af5ffe2ac243671f5aa555f8f7ca265aa74e5af0 100644 (file)
@@ -6,7 +6,7 @@ import type { NativeElements, ReservedProps, VNode } from '@vue/runtime-dom'
  * when ts compilerOptions.jsx is 'react-jsx' or 'react-jsxdev'
  * https://www.typescriptlang.org/tsconfig#jsxImportSource
  */
-export { h as jsx, h as jsxDEV, Fragment } from '@vue/runtime-dom'
+export { h as jsx, h as jsxDEV, Fragment, h as jsxs } from '@vue/runtime-dom'
 
 export namespace JSX {
   export interface Element extends VNode {}