我正在按照本教程Add Loading Indicators to Your Vue.js Application将NProgress添加到我的Vue应用中。在本教程中,它将以下代码添加到index.html
:
<link href="https://unpkg.com/nprogress@0.2.0/nprogress.css" rel="stylesheet" />
<script src="https://unpkg.com/nprogress@0.2.0/nprogress.js"></script>
由于安全原因,我的组织更喜欢将NProgress作为节点模块安装并引用该模块,而不是使用CDN。我怎么做?