mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
7 lines
155 B
HTML
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>
|