import { useI18n } from "vue-i18n";
setup() {
const { t } = useI18n({
inheritLocale: true,
useScope: "local",
});
return { t };
},
mounted(){alert (t("hello"))}
Uncaught TypeError: vue_i18n__WEBPACK_IMPORTED_MODULE_2__.useI18n.t is not a function