You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
427 B
26 lines
427 B
<template>
|
|
<a-card class="task-item" type="inner">
|
|
{{content}}
|
|
</a-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TaskItem',
|
|
props: ['content']
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.task-item{
|
|
margin-bottom: 16px;
|
|
box-shadow: 0 1px 1px @shadow-color;
|
|
border-radius: 6px;
|
|
& :hover{
|
|
cursor: move;
|
|
box-shadow: 0 1px 2px @shadow-color;
|
|
border-radius: 6px;
|
|
}
|
|
}
|
|
</style>
|