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.
25 lines
389 B
25 lines
389 B
7 years ago
|
<template>
|
||
|
<a-card class="task-item" type="inner">
|
||
|
{{content}}
|
||
|
</a-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import ACard from 'ant-design-vue/es/card/Card'
|
||
|
export default {
|
||
|
name: 'TaskItem',
|
||
|
props: ['content'],
|
||
|
components: {ACard}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
.task-item{
|
||
|
margin-bottom: 16px;
|
||
|
transition: all .3s;
|
||
|
& :hover{
|
||
|
cursor: move;
|
||
|
}
|
||
|
}
|
||
|
</style>
|