1
0

feat: use defineComponent wrapper

This commit is contained in:
Dominik Pschenitschni
2022-02-15 13:07:59 +01:00
committed by kolaente
parent a3329f1b42
commit ba9f69344a
75 changed files with 309 additions and 236 deletions

View File

@ -66,6 +66,8 @@
</template>
<script lang="ts">
import {defineComponent} from 'vue'
import {playPop} from '../../../helpers/playPop'
import PriorityLabel from '../../../components/tasks/partials/priorityLabel'
import User from '../../../components/misc/user'
@ -75,7 +77,7 @@ import ChecklistSummary from './checklist-summary'
import {colorIsDark} from '@/helpers/color/colorIsDark'
export default {
export default defineComponent({
name: 'kanban-card',
components: {
ChecklistSummary,
@ -124,7 +126,7 @@ export default {
})
},
},
}
})
</script>
<style lang="scss" scoped>