vue3-core/packages-private/sfc-playground/src/main.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
199 B
TypeScript
Raw Permalink Normal View History

2021-03-28 13:35:45 +08:00
import { createApp } from 'vue'
import App from './App.vue'
// @ts-expect-error Custom window property
window.VUE_DEVTOOLS_CONFIG = {
defaultSelectedAppId: 'repl',
}
2021-03-28 13:35:45 +08:00
createApp(App).mount('#app')