From dd594c010423b25d80231f5e4a7b7af52e933eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bahad=C4=B1r=20Sofuo=C4=9Flu?= Date: Wed, 12 Apr 2023 12:01:32 +0300 Subject: [PATCH] WebHasHistory added to router --- CHANGELOG.md | 2 +- src/router/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cc8a49cf..c3e96a3f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 3.6.0 (2023-04-10) +## 3.6.0 (2023-04-12) **Implemented New Features and Enhancements** diff --git a/src/router/index.js b/src/router/index.js index 499c76a6b..116445d7e 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,8 +1,8 @@ -import { createRouter, createWebHistory } from 'vue-router'; +import { createRouter, createWebHashHistory } from 'vue-router'; import AppLayout from '@/layout/AppLayout.vue'; const router = createRouter({ - history: createWebHistory(), + history: createWebHashHistory(), routes: [ { path: '/',