Skip to content

Commit 584eae6

Browse files
authoredNov 14, 2022
fix(compiler-sfc): always generate runtime prop type for Function (#7112)
fix #7111
1 parent 6e8b6b3 commit 584eae6

File tree

3 files changed

+61
-6
lines changed

3 files changed

+61
-6
lines changed
 

‎packages/compiler-sfc/__tests__/__snapshots__/compileScript.spec.ts.snap

+29
Original file line numberDiff line numberDiff line change
@@ -1729,6 +1729,35 @@ const props = __props as {
17291729

17301730

17311731

1732+
return { props, get defaults() { return defaults } }
1733+
}
1734+
1735+
})"
1736+
`;
1737+
1738+
exports[`SFC compile <script setup> with TypeScript withDefaults (dynamic) w/ production mode 1`] = `
1739+
"import { mergeDefaults as _mergeDefaults, defineComponent as _defineComponent } from 'vue'
1740+
import { defaults } from './foo'
1741+
1742+
export default /*#__PURE__*/_defineComponent({
1743+
props: _mergeDefaults({
1744+
foo: { type: Function },
1745+
bar: { type: Boolean },
1746+
baz: { type: [Boolean, Function] },
1747+
qux: null
1748+
}, { ...defaults }),
1749+
setup(__props: any, { expose }) {
1750+
expose();
1751+
1752+
const props = __props as {
1753+
foo: () => void
1754+
bar: boolean
1755+
baz: boolean | (() => void)
1756+
qux: string | number
1757+
};
1758+
1759+
1760+
17321761
return { props, get defaults() { return defaults } }
17331762
}
17341763

‎packages/compiler-sfc/__tests__/compileScript.spec.ts

+29
Original file line numberDiff line numberDiff line change
@@ -1144,6 +1144,35 @@ const emit = defineEmits(['a', 'b'])
11441144
)
11451145
})
11461146

1147+
// #7111
1148+
test('withDefaults (dynamic) w/ production mode', () => {
1149+
const { content } = compile(
1150+
`
1151+
<script setup lang="ts">
1152+
import { defaults } from './foo'
1153+
const props = withDefaults(defineProps<{
1154+
foo: () => void
1155+
bar: boolean
1156+
baz: boolean | (() => void)
1157+
qux: string | number
1158+
}>(), { ...defaults })
1159+
</script>
1160+
`,
1161+
{ isProd: true }
1162+
)
1163+
assertCode(content)
1164+
expect(content).toMatch(`import { mergeDefaults as _mergeDefaults`)
1165+
expect(content).toMatch(
1166+
`
1167+
_mergeDefaults({
1168+
foo: { type: Function },
1169+
bar: { type: Boolean },
1170+
baz: { type: [Boolean, Function] },
1171+
qux: null
1172+
}, { ...defaults })`.trim()
1173+
)
1174+
})
1175+
11471176
test('defineEmits w/ type', () => {
11481177
const { content } = compile(`
11491178
<script setup lang="ts">

‎packages/compiler-sfc/src/compileScript.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -822,12 +822,9 @@ export function compileScript(
822822
)}, required: ${required}${
823823
defaultString ? `, ${defaultString}` : ``
824824
} }`
825-
} else if (
826-
type.some(
827-
el => el === 'Boolean' || (defaultString && el === 'Function')
828-
)
829-
) {
830-
// #4783 production: if boolean or defaultString and function exists, should keep the type.
825+
} else if (type.some(el => el === 'Boolean' || el === 'Function')) {
826+
// #4783, #7111 for boolean or function, should keep the type
827+
// in production
831828
return `${key}: { type: ${toRuntimeTypeString(type)}${
832829
defaultString ? `, ${defaultString}` : ``
833830
} }`

0 commit comments

Comments
 (0)
Please sign in to comment.