Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

プロジェクトの期間のコンポーネント作成 #72

Merged
merged 5 commits into from
Oct 5, 2023

Conversation

mehm8128
Copy link
Contributor

@mehm8128 mehm8128 commented Apr 25, 2023

close #66

動作確認用

<script lang="ts" setup>
import { ref } from 'vue'
import FormProjectDuration from '/@/components/UI/FormProjectDuration.vue'
import { YearWithSemesterDuration, Semester } from '/@/lib/apis'

const aaa = ref<YearWithSemesterDuration>({
  since: {
    year: 2021,
    semester: Semester.first
  },
  until: {
    year: 2021,
    semester: Semester.second
  }
})
</script>

<template>
  <form-project-duration v-model="aaa" />
</template>

@mehm8128 mehm8128 requested review from tesso57 and toshi-pono April 25, 2023 14:29
@mehm8128 mehm8128 self-assigned this Apr 25, 2023
@mehm8128 mehm8128 merged commit 0ed725d into main Oct 5, 2023
5 checks passed
@mehm8128 mehm8128 deleted the feat/project_duration_component branch October 5, 2023 08:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

yearとsemesterのコンポーネント
1 participant