mirror of https://github.com/vuejs/core.git
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import App from './App.vue'
|
||
|
|
||
|
// @ts-expect-error Custom window property
|
||
|
window.VUE_DEVTOOLS_CONFIG = {
|
||
|
defaultSelectedAppId: 'repl',
|
||
|
}
|
||
|
|
||
|
createApp(App).mount('#app')
|