Browse Source

chore: export `jsxs` type (#13463)

linzhe 10 months ago
parent
commit
c7d3207cde
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/vue/jsx-runtime/index.d.ts

+ 1 - 1
packages/vue/jsx-runtime/index.d.ts

@@ -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 {}