chore: correct the issue number (#11715) [ci skip]

This commit is contained in:
edison 2024-08-26 18:08:46 +08:00 committed by GitHub
parent fbc0c42bcf
commit 342657b717
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ export function defineComponent(
extraOptions?: ComponentOptions,
) {
return isFunction(options)
? // #8326: extend call and options.name access are considered side-effects
? // #8236: extend call and options.name access are considered side-effects
// by Rollup, so we have to wrap it in a pure-annotated IIFE.
/*#__PURE__*/ (() =>
extend({ name: options.name }, extraOptions, { setup: options }))()