Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Armaldio committed Sep 17, 2024
1 parent 2d1bcdd commit 087ef05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/router/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
import { createRouter, createWebHashHistory } from 'vue-router'
import IndexView from '../views/index.vue'

const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
history: createWebHashHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
Expand Down Expand Up @@ -31,7 +31,7 @@ const router = createRouter({
if (to.hash) {
return {
el: to.hash,

}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/download.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="flex flex-column align-items-center p-8 surface-100">
<div class="flex flex-column align-items-center p-8">
<!-- <img
alt="Cyn Logo"
class="w-4rem h-4rem mb-4"
Expand Down

0 comments on commit 087ef05

Please sign in to comment.