43 lines
800 B
Vue
43 lines
800 B
Vue
<script setup lang="ts">
|
|
import type { Task } from '../src/models/Task'
|
|
|
|
interface Props {
|
|
task: Task
|
|
type: string // 'task-row' | 'task-bar'
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), {})
|
|
// console.error('props', props)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="html-content-card">
|
|
<div v-if="props.type === 'task-row'" class="task-row" v-html="props.task.name" />
|
|
<div v-else-if="props.type === 'task-bar'" class="task-bar" v-html="props.task.name" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.html-content-card {
|
|
display: inline-block;
|
|
}
|
|
|
|
.task-row {
|
|
flex: 1;
|
|
padding: 0 4px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.task-bar {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.btn {
|
|
height: 20px;
|
|
margin-left: 20px;
|
|
}
|
|
</style>
|