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
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
75 changed files with 309 additions and 236 deletions

View file

@ -14,12 +14,14 @@
</template>
<script lang="ts">
import {defineComponent} from 'vue'
import ListDuplicateService from '@/services/listDuplicateService'
import NamespaceSearch from '@/components/namespace/namespace-search.vue'
import ListDuplicateModel from '@/models/listDuplicateModel'
import CreateEdit from '@/components/misc/create-edit.vue'
export default {
export default defineComponent({
name: 'list-setting-duplicate',
data() {
return {
@ -51,5 +53,5 @@ export default {
this.$router.push({name: 'list.index', params: {listId: duplicate.list.id}})
},
},
}
})
</script>