Skip to content

Commit

Permalink
✨ /learnset route에서 /learn 로 이동하는 버튼추가
Browse files Browse the repository at this point in the history
  • Loading branch information
padosum committed Feb 28, 2023
1 parent 5d68dba commit 1141d7e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/views/LearnsetView.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<template>
<div>hello</div>
<v-btn variant="outlined" :to="`/learn/${route.params.id}`">
학습 시작하기</v-btn
>
</template>

<script setup lang="ts"></script>
<script setup lang="ts">
import { useRoute } from 'vue-router';
const route = useRoute();
</script>

<style scoped></style>

0 comments on commit 1141d7e

Please sign in to comment.