22 lines
371 B
Vue
22 lines
371 B
Vue
|
<template>
|
||
|
<Button :disabled="disabled" :border="true">
|
||
|
{{ $t('skip') }}
|
||
|
</Button>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import useI18n from '@/composables/useI18n'
|
||
|
|
||
|
defineProps<{
|
||
|
disabled?: boolean
|
||
|
selectable?: boolean
|
||
|
selected?: boolean
|
||
|
}>()
|
||
|
|
||
|
const { $t } = useI18n({
|
||
|
skip: { en: 'skip', de: 'überspringen' },
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
</style>
|