-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
import { createApp, Vue } from 'vue';
import { createPinia } from 'pinia';
import router from '@/router';
import App from './App.vue';
import VTK from 'vue-vtk-js';
const app = createApp(App);
app.use(createPinia());
app.use(router);
app.use(VTK);
app.mount('#app');
How to run this on Vue 3?
I got error like this when running it.
Metadata
Metadata
Assignees
Labels
No labels
