11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import { createApp } from 'vue'
|
|
import './style.css'
|
|
import App from './App.vue'
|
|
|
|
/**
|
|
* This entrypoint is only used when running the dev server and it's the entrypoint for the
|
|
* web app that you can open in the browser
|
|
*/
|
|
|
|
createApp(App).mount('#app')
|