当vue的router模式设置为mode: 'history'时,全局引入 js 或者css在页面刷新后会失效
可参考官网https://router.vuejs.org/zh/guide/essentials/history-mode.html设置

另简单的两种方法

1.将mode: 'history'注释掉,变成 hash  模式,此时刷新不会有问题

2.在index.html引入的时候,将相对路径转换成绝对路径

相对路径:<script src="./powerbi.js"></script>

绝对路径:<script src="/powerbi.js"></script>

亲测,都可以用!!!

Logo

前往低代码交流专区

更多推荐