研发图纸文件管理系统-前端项目
chenghx
2018-08-24 94c172f41fa5d147152ac934fd954851c5f131aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<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>