refactor: clean up i18n host unused props

This commit is contained in:
Zack Spear
2023-08-02 19:12:19 -07:00
parent d21ca3e68d
commit e2fd05edd4

View File

@@ -36,13 +36,6 @@ const i18n = createI18n<false>({
});
provide(I18nInjectionKey, i18n);
export interface Props {
locale?: string;
}
withDefaults(defineProps<Props>(), {
locale: defaultLocale,
});
</script>
<template>