Skip to content

Commit

Permalink
refactor: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MonaBlanc committed Jun 24, 2024
1 parent d2379e6 commit 1e78ac4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions src/pages/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@
<img :src="'/src/assets/images/' + project.image" alt="Project" />
</router-link>
<h2>{{ project.name }}</h2>
<a :href="'projects.html?tag=' + stack" :key="stack" v-for="stack in project.stack">
<span class="tag">#{{ stack }}</span>
</a>
<span :key="stack" class="tag" v-for="stack in project.stack">#{{ stack }}</span>
</div>
</div>
<div class="swiper-button-next"></div>
Expand Down
1 change: 0 additions & 1 deletion src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const routes: Array<RouteRecordRaw> = [
component: Projects,
name: "Projects",
path: `${RouteName.Projects}`,
props: (route) => ({ tags: route.query.tags }),
},
];

Expand Down

0 comments on commit 1e78ac4

Please sign in to comment.