ca_vue_apps/index.html
2023-12-19 00:01:56 -06:00

23 lines
599 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="https://www.verint.com/wp-content/themes/verint/dist/img/favicon.ico"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Channel Automation Vue Apps</title>
<script>
function resizeIframe(obj) {
obj.style.height =
obj.contentWindow.document.documentElement.scrollHeight + "px";
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>