我想尝试用Vue3 +vue-i18n9.3进行插值。当我试图通过辩论,我得到了;
Message compilation error: Not allowed nest placeholder
1 | Showing {{from}} to {{to}} of {{total}} entries
我的地区json文件;
...
"showing_0_to_0_of_0_entries": "Showing {{from}} to {{to}} of {{total}} entries",
...
在我的组件里;
<div class="info">{{ $t('showing_0_to_0_of_0_entries',{ from: 0, to: 15, total:8 }) }}</div>
但它不起作用,我得到了错误,在我的页面显示这样的文字;
Showing {{from}} to {{to}} of {{total}} entries
不能通过验证。ı能做什么?
发布于 2022-09-12 13:20:23
根据文档,我应该使用一个像{}
这样的花括号。这就是我的解决方案;
"showing_0_to_0_of_0_entries": "Showing {from} to {to} of {total} entries",
https://stackoverflow.com/questions/73689912
复制相似问题