mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-16 11:05:32 +00:00
25 lines
495 B
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>
|