当前位置: 首页 > 工具软件 > we-script > 使用案例 >

uniapp动态引入script

禹智渊
2023-12-01

最新写app用uniapp坑死了,index.html中引入的script标签没有效果

后面试了试在App.vue生命周期内动态引入

onLaunch: function() {
	/* 动态引入script */
	const script = document.createElement('script')
	script.src = 'src路径'
	document.head.appendChild(script)
},

 类似资料: