mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 20:37:29 -08:00
9c94050deb
* refactor: replace Vue.extend with defineComponent in editor-ui * fix: change $externalHooks extractions from mixins * fix: refactor externalHooks mixin
16 lines
274 B
Vue
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>
|