Export Vue instance for debugging.

This commit is contained in:
Lukáš Kucharczyk 2020-08-25 16:06:28 +02:00
parent d7ace44625
commit 6d8c2f3215
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { createApp } from "vue";
import App from "./App.vue";
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount("#app");
window.app = createApp(App).mount('#app')