vite/playground/extensions/index.html
2022-05-09 09:36:14 +02:00

7 lines
155 B
HTML

<div id="app">Hello Vite!</div>
<script type="module">
import { createApp } from 'vue'
createApp({ template: 'Hello Vite!' }).mount('#app')
</script>