我使用了插件vue i18n。代码示例:
<template>
<div>
{{ test }}
</div>
</template>
<script>
export default {
layout: "default",
label: this.$t('Tools'),
data: () => ({
test: this.$t('Test')
})
}
</script>
但是它不起作用。该插件尚未初始化,因此无法转换字符串。这个问题有解决方案吗?