Answers for "add script vue"

1

vue add script tags and link tags

created() {
	let doc = document.createElement('script');  
	doc.setAttribute('src',"your-link-here");
	document.head.appendChild(doc);
}
Posted by: Guest on March-16-2021
0

vuejs cant add script in template

<component is="script" src="https://www.example.com/example.js" async></component>
Posted by: Guest on February-07-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language