gpt4 book ai didi

javascript - 如何在页面处于加载状态时摆脱 vuejs 中的 {{ user.id }}(花括号)

转载 作者:搜寻专家 更新时间:2023-10-30 22:35:17 25 4
gpt4 key购买 nike

我在我的项目中使用 vuejs 并注意到当页面处于加载状态时,我看到类似这样的内容 {{ user.id }} {{ user.name }} 这是很烦人。
在页面完全加载后,我可以正确地看到 userIduser name

如何在页面加载状态下停止显示这些vuejs的花括号?

最佳答案

有一个为此目的而构建的指令:v-cloakhttp://vuejs.org/api/#v-cloak

This directive will remain on the element until the associated Vue instance finishes compilation. Combined with CSS rules such as [v-cloak] { display: none }, this directive can be used to hide un-compiled mustache bindings until the Vue instance is ready.

[v-cloak] {
display: none;
}
<div v-cloak>
{{ message }}
</div>

关于javascript - 如何在页面处于加载状态时摆脱 vuejs 中的 {{ user.id }}(花括号),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40428070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com