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'; import HomeView from '../views/HomeView.vue';
const routes = [ const routes = [
{ {
path: '/', path: '/',
name: 'Home', name: 'Home',
component: HomeView component: HomeView
} }
]; ];
const router = createRouter({ const router = createRouter({
history: createWebHistory(), history: createWebHistory(),
routes routes
}); });
export default router; export default router;
View File