我已经在我的 Angular 项目中安装了tippy.js,这是一个工具提示库(https://atomiks.github.io/tippyjs/),但它仅在第一次刷新页面后才有效。
我已经通过npm install tippy.js命令安装了它,并将其导入到angular.json文件中,如下所示:
"scripts": [
"./node_modules/popper.js/dist/umd/popper.min.js",
"./node_modules/tippy.js/umd/index.all.min.js"
],
负责调用它的 html 元素是这样写的:
<span data-tippy="Tooltip" class="layout-semester theme-semester"><strong>2019</strong>-1sem</span>
我认为该库是在页面完全构建之前加载的,但不知道如何在 Angular 项目中执行它...