Electron & Electron Builder

This commit is contained in:
2024-11-02 18:09:44 +01:00
parent 80a4dcfdc9
commit 16fd40f11d
9 changed files with 8007 additions and 1307 deletions

View File

@@ -1,9 +1,9 @@
import { createRouter, createWebHistory } from 'vue-router'
import { createRouter, createWebHashHistory } from 'vue-router'
import routes from './../router/routes'
// Router configuration
const router = createRouter({
history: createWebHistory(),
history: createWebHashHistory(),
routes
})