n8n/packages/editor-ui/src/views/ExecutionsView.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
274 B
Vue
Raw Normal View History

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