-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
67 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<template lang=""> | ||
<router-link to="/" > | ||
<div class="md:flex mb-6 gap-6 p-2 hover:bg-slate-100 rounded-md"> | ||
<div class="md:w-4/12 h-fit"> | ||
<img src="https://api.baitaptracnghiem.com/storage/images/vfOcrwr1mmEuj1HEE6jPFgQ4Hu2SdoFk7Z4bc09y.jpg" alt="exercise-background" class="w-fit rounded-lg object-contain"/> | ||
</div> | ||
<div class="flex flex-col justify-between"> | ||
<h1 class="text-xl text-[#2b2d38] font-bold my-5 md:my-0">Bài tập trắc nghiệm về cực trị của hàm số</h1> | ||
<p class="text-[#8189a9] text-md hidden md:block"> | ||
Bài tập trắc nghiệm cực trị của hàm số có đáp án chi tiết hay nhất được tổng hợp giúp các bạn ôn luyện lại các kiến thức đã học | ||
</p> | ||
<Category title="Web"/> | ||
</div> | ||
</div> | ||
</router-link> | ||
</template> | ||
|
||
<script setup> | ||
import Category from "@/components/Button/Category.vue"; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<template lang=""> | ||
<span class="border border-[#67c23a] text-[#67c23a] w-fit text-xs px-1 rounded"> | ||
{{ title }} | ||
</span> | ||
</template> | ||
|
||
<script setup> | ||
const props = defineProps({ | ||
title: { | ||
type: String, | ||
required: true, | ||
} | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<template lang=""> | ||
<div> | ||
<Box v-for="n in 10" :key="n"/> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
import Box from "@/components/Box.vue"; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
<template lang=""> | ||
<div> | ||
Exercise | ||
<ListBox/> | ||
</div> | ||
</template> | ||
<script setup lang="ts"> | ||
|
||
<script setup lang="ts"> | ||
import ListBox from "@/components/ListBox.vue"; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters