Files
company_h5/public/index.html

39 lines
1.2 KiB
HTML
Raw Normal View History

2022-08-08 09:32:04 +08:00
<!DOCTYPE html>
<html lang="">
<head>
2023-04-03 08:51:10 +08:00
<meta name="referrer" content="no-referrer" />
<meta name="theme-color" content="#ff6700" />
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" href="<%= BASE_URL %>logo.png" />
2022-08-29 09:45:23 +08:00
<title><%= webpackConfig.name %></title>
2022-08-08 09:32:04 +08:00
</head>
<body>
<noscript>
2022-08-29 09:45:23 +08:00
<strong>We're sorry but <%= webpackConfig.name %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
2022-08-08 09:32:04 +08:00
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
<script>
2023-04-03 08:51:10 +08:00
function xxx(res) {
2022-08-08 09:32:04 +08:00
alert(res)
}
2023-04-03 08:51:10 +08:00
document.addEventListener('touchstart', function (event) {
2022-08-08 09:32:04 +08:00
if (event.touches.length > 1) {
event.preventDefault()
}
})
document.addEventListener('gesturestart', function (event) {
event.preventDefault()
2023-04-03 08:51:10 +08:00
})
</script>
<script src="https://cdn.bootcdn.net/ajax/libs/vConsole/3.9.0/vconsole.min.js"></script>
<script>
var vConsole = new VConsole()
console.log('Hello world')
2022-08-08 09:32:04 +08:00
</script>