Files
OliveTin/frontend/node_modules/picocrank/index.html

25 lines
495 B
HTML

<html>
<head>
<title>PicoCrank</title>
<link rel = "shortcut icon" href = "logo.png" type = "image/png" />
<meta name = "viewport" content = "width=device-width, initial-scale=1.0, user-scalable=no" />
</head>
<body>
<slot id = "app" />
</body>
<script type = "module">
import { createApp } from 'vue';
import App from './vue/views/App.vue';
import router from './router.js';
const app = createApp(App)
app.use(router)
app.mount('#app');
</script>
</html>