在 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 插件,可以在组件渲染之前动态导入外部脚本,从而避免与