chore: update indentation to 2 spaces

This commit is contained in:
Tony Yang
2025-03-20 00:53:27 +08:00
parent 6852356c32
commit 426b492eb0
2 changed files with 7 additions and 7 deletions
+7 -7
View File
@@ -2,16 +2,16 @@ import { createRouter, createWebHistory } from 'vue-router';
import HomeView from '../views/HomeView.vue';
const routes = [
{
path: '/',
name: 'Home',
component: HomeView
}
{
path: '/',
name: 'Home',
component: HomeView
}
];
const router = createRouter({
history: createWebHistory(),
routes
history: createWebHistory(),
routes
});
export default router;
View File