We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 860a79e commit ffe6d51Copy full SHA for ffe6d51
packages/vue-i18n-core/src/components/Translation.ts
@@ -62,7 +62,7 @@ export const TranslationImpl: ComponentOptions<TranslationProps> =
62
}) as unknown as Composer & ComposerInternal)
63
64
return (): VNodeChild => {
65
- const keys = Object.keys(slots).filter(key => key !== '_')
+ const keys = Object.keys(slots).filter(key => key[0] !== '_')
66
const options = create() as TranslateOptions
67
if (props.locale) {
68
options.locale = props.locale
0 commit comments