fix: Move all actions to the duedate section
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
27
src/components/card/CardDetailEntry.vue
Normal file
27
src/components/card/CardDetailEntry.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="selector-wrapper" :aria-label="label">
|
||||
<div class="selector-wrapper--icon">
|
||||
<slot name="icon" />
|
||||
</div>
|
||||
<div class="selector-wrapper--content">
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CardDetailEntry',
|
||||
props: {
|
||||
label: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss">
|
||||
@import '../../css/selector';
|
||||
</style>
|
||||
Reference in New Issue
Block a user