Skip to content

Commit 3aab187

Browse files
committed
1 parent 62e6e5f commit 3aab187

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

app/components/IchimatsuDividedBar.vue

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
<script setup lang="ts">
2-
import type { CustomPropType } from '~/types/shims-vue'
3-
4-
const props = defineProps({
5-
color: {
6-
type: String as CustomPropType<'white' | 'vue-blue' | 'hiwamoegi' | 'silver-tree' | 'sangosyu' | 'tohoh' | 'asagi' | 'timetable' | 'typescript-blue' | 'white-green'>,
7-
required: true,
8-
},
9-
})
2+
const props = defineProps<{
3+
color: 'white' | 'vue-blue' | 'hiwamoegi' | 'silver-tree' | 'sangosyu' | 'tohoh' | 'asagi' | 'timetable' | 'typescript-blue' | 'white-green'
4+
}>()
105
116
const colorClass = computed(() => {
127
switch (props.color) {

0 commit comments

Comments
 (0)