template-vue3-cdn/index.html

26 lines
820 B
HTML

<!DOCTYPE html>
<!--suppress JSUnresolvedFunction -->
<html lang="en">
<head>
<title>template-vue3-cdn</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="module">
import { createApp } from 'https://cdn.jsdelivr.net/npm/vue@3.2.11/dist/vue.esm-browser.js';
import { createMyApp } from './src/app.js';
const app = createMyApp({ createApp });
document.addEventListener('DOMContentLoaded', () => app.mount('.App'));
</script>
<style>
@import 'https://cdn.jsdelivr.net/npm/destyle.css@3.0.2/destyle.min.css';
:root {
color-scheme: dark;
}
</style>
</head>
<body class="App"></body>
</html>