11//#region rolldown:runtime
2- var __create = Object . create
3- var __defProp = Object . defineProperty
4- var __getOwnPropDesc = Object . getOwnPropertyDescriptor
5- var __getOwnPropNames = Object . getOwnPropertyNames
6- var __getProtoOf = Object . getPrototypeOf
7- var __hasOwnProp = Object . prototype . hasOwnProperty
8- var __copyProps = ( to , from , except , desc ) => {
2+ const __create = Object . create
3+ const __defProp = Object . defineProperty
4+ const __getOwnPropDesc = Object . getOwnPropertyDescriptor
5+ const __getOwnPropNames = Object . getOwnPropertyNames
6+ const __getProtoOf = Object . getPrototypeOf
7+ const __hasOwnProp = Object . prototype . hasOwnProperty
8+ const __copyProps = ( to , from , except , desc ) => {
99 if ( ( from && typeof from === 'object' ) || typeof from === 'function' )
1010 for (
11- // eslint-disable-next-line vars-on-top
12- var keys = __getOwnPropNames ( from ) , i = 0 , n = keys . length , key ;
11+ let keys = __getOwnPropNames ( from ) , i = 0 , n = keys . length , key ;
1312 i < n ;
1413 i ++
1514 ) {
@@ -22,7 +21,7 @@ var __copyProps = (to, from, except, desc) => {
2221 }
2322 return to
2423}
25- var __toESM = ( mod , isNodeMode , target ) => (
24+ const __toESM = ( mod , isNodeMode , target ) => (
2625 ( target = mod != null ? __create ( __getProtoOf ( mod ) ) : { } ) ,
2726 __copyProps (
2827 isNodeMode || ! mod || ! mod . __esModule
@@ -39,7 +38,7 @@ const vue = __toESM(require('vue'))
3938const vue_jsx_vapor = __toESM ( require ( 'vue-jsx-vapor' ) )
4039
4140function jsx ( type , props , key ) {
42- const { children, [ 'v-slots' ] : vSlots } = props
41+ const { children, 'v-slots' : vSlots } = props
4342 delete props . children
4443 delete props [ 'v-slots' ]
4544 if ( arguments . length > 2 ) props . key = key
0 commit comments