11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import '@vue/repl/style.css'
|
|
|
|
// @ts-expect-error Custom window property
|
|
window.VUE_DEVTOOLS_CONFIG = {
|
|
defaultSelectedAppId: 'id:repl'
|
|
}
|
|
|
|
createApp(App).mount('#app')
|