Explorar el Código

chore: export `jsxs` type (#13463)

linzhe hace 1 año
padre
commit
c7d3207cde
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 {}