VueJS
Steps to Add Script to a Vue Project
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>YourVueApp</title>
<!-- Other head content -->
<script>
// Your sitebehaviour tracking script here
</script>
</head>
<body>
<noscript>
<strong>We're sorry but YourVueApp doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
Last updated