We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b09a22 commit dbea1f0Copy full SHA for dbea1f0
packages/app-backend-vue3/src/components/data.ts
@@ -188,7 +188,8 @@ function processSetupState (instance) {
188
189
let isOther = typeof value === 'function' ||
190
typeof value?.render === 'function' ||
191
- typeof value?.__asyncLoader === 'function'
+ typeof value?.__asyncLoader === 'function' ||
192
+ typeof value === 'object' && ('setup' in value || 'props' in value)
193
194
if (rawData) {
195
const info = getSetupStateInfo(rawData)
0 commit comments