Skip to content

Commit

Permalink
fix: add to in router-link, remove lang in script
Browse files Browse the repository at this point in the history
  • Loading branch information
nxhawk committed Jun 19, 2024
1 parent 79fc138 commit 9ea5cfe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<router-link :to="{ name: 'exercise', params: { classId: 'bai-tap-tieng-anh' } }" class="hover:text-gray-400">
Tiếng anh
</router-link>
<router-link class="hover:text-gray-400">Đại học</router-link>
<router-link class="hover:text-gray-400">Trắc nghiệm tính cách MBTI</router-link>
<router-link class="hover:text-gray-400" :to="{ name: 'exercise', params: { classId: 'bai-tap-tieng-anh' } }">Đại học</router-link>
<router-link class="hover:text-gray-400" :to="{ name: 'exercise', params: { classId: 'bai-tap-tieng-anh' } }">Trắc nghiệm tính cách MBTI</router-link>
</div>
<Searchbar/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ExercisePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
</div>
</template>

<script setup lang="ts">
<script setup>
import ListBox from "@/components/ListBox.vue";
</script>

0 comments on commit 9ea5cfe

Please sign in to comment.