我用 Angular 11 和 bootstrap 和 bootstrap-icons 实现了一个简单的按钮。当我路由显示按钮的页面时,按钮会立即加载。但只有在大约 500 毫秒后,图标才会弹出并且看起来像是在闪烁。
我怎样才能摆脱这种行为?它也发生在列表视图中的图标等等。
<button
type="button"
class="btn btn-secondary float-right w-25 mb-3"
>
<svg width="24" height="24">
<use xlink:href="assets/bootstrap-icons/bootstrap-icons.svg#plus" />
</svg>
Test
</button>