summaryrefslogtreecommitdiff
path: root/app/src/index.js
blob: 6a05a8b1c6e7dd939702b912366b845020ad080c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import { createRouter } from '~/router';
import App from '~/App';

const app = createApp(App);

app.provide('electron', require('electron'));

app.use(createRouter());
app.use(createPinia());

app.mount('#app');