You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
431 B
30 lines
431 B
<template> |
|
<p>{{ t('hello') }}</p> |
|
</template> |
|
|
|
<script lang="ts"> |
|
import { defineComponent } from 'vue'; |
|
import { useI18n } from 'vue-i18n'; |
|
|
|
export default defineComponent({ |
|
name: 'HelloI18n', |
|
setup() { |
|
const { t } = useI18n({ |
|
inheritLocale: true, |
|
useScope: 'local', |
|
}); |
|
|
|
// Something todo .. |
|
|
|
return { t }; |
|
}, |
|
}); |
|
</script> |
|
|
|
<i18n> |
|
{ |
|
"en": { |
|
"hello": "Hello i18n in SFC!" |
|
} |
|
} |
|
</i18n>
|
|
|