vue中结合vue-i18n和quasar-framework的两种方式
我需要知道,如何放置$t('message.hello')
函数,变量中的一个v-html
或双括号{{ $t('message.hello')
中的实际内容。我试图在computed:
- 和mounted()
实例中返回函数,我还尝试将它放在window.var
.
另一种变体
反过来,我需要像这样将
vue
渲染变量放入$t('message.hello', {scope: 'world'})
方法中:$t('message.hello', {scope: 'returned.fromDataOrSomewhere'})
为什么我需要这个
- 我必须从中注入一些数据
promise
来vue-i18n
转换动态值。 我需要将翻译后的值放在Quasar
<q-datatable>
中,其中列的配置如下:{ label: 'ID', //here I need a variable instead of string field: 'id', filter: true, sort: true, type: 'number', width: '10%' }, { label: 'Username', //here too - and so on... field: 'username', filter: true, sort: true, type: 'date', width: '20%' },
编辑:
第二种情况解决了。