We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52d2581 commit 0d5e5bcCopy full SHA for 0d5e5bc
_config.yml
@@ -0,0 +1 @@
1
+theme: jekyll-theme-cayman
src/main.js
@@ -1,5 +1,5 @@
import { createApp } from 'vue'
2
-import { createRouter, createWebHistory } from 'vue-router';
+import { createRouter, createWebHashHistory } from 'vue-router';
3
import App from './App.vue'
4
import Home from './components/Home';
5
import Login from './components/Login';
@@ -13,7 +13,7 @@ const routes = [
13
]
14
15
const router = createRouter({
16
- history: createWebHistory(),
+ history: createWebHashHistory(),
17
routes,
18
});
19
0 commit comments