n8n/packages/editor-ui/src/views/ExecutionsView.vue
Alex Grozav 9c94050deb
feat: Replace Vue.extend with defineComponent in editor-ui (no-changelog) (#6033)
* refactor: replace Vue.extend with defineComponent in editor-ui

* fix: change $externalHooks extractions from mixins

* fix: refactor externalHooks mixin
2023-04-21 18:51:08 +03:00

16 lines
274 B
Vue

<template>
<ExecutionsList />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import ExecutionsList from '@/components/ExecutionsList.vue';
export default defineComponent({
name: 'ExecutionsView',
components: {
ExecutionsList,
},
});
</script>