Vue中``与``同时使用时如何解决报错?
在 vue 中使用
错误提示:
error <script> cannot use the "src" attribute when <script setup> is also present because they must be processed together.
解决方案:
为了解决此错误,可以使用 vue use - usescripttag 插件来动态导入外部脚本。
import { useScriptTag } from '@vueuse/script-tag' const scriptUrl = '...' setup() { useScriptTag(scriptUrl) }
通过使用 usescripttag 插件,可以在组件渲染之前动态导入外部脚本,从而避免与
以上就是Vue中``与``同时使用时如何解决报错?的详细内容,更多请关注硕下网其它相关文章!