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

@ -28,6 +28,7 @@
</template>
<script lang="ts">
import {defineComponent} from 'vue'
import {includesById} from '@/helpers/utils'
import UserModel from '../../../models/user'
import ListUserService from '../../../services/listUsers'
@ -35,7 +36,7 @@ import TaskAssigneeService from '../../../services/taskAssignee'
import User from '../../misc/user'
import Multiselect from '@/components/input/multiselect.vue'
export default {
export default defineComponent({
name: 'editAssignees',
components: {
User,
@ -115,7 +116,7 @@ export default {
this.$refs.multiselect.focus()
},
},
}
})
</script>
<style lang="scss" scoped>