mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
16 lines
253 B
Vue
16 lines
253 B
Vue
|
<template>
|
||
|
<ExecutionsList />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import ExecutionsList from '@/components/ExecutionsList.vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
name: 'ExecutionsView',
|
||
|
components: {
|
||
|
ExecutionsList,
|
||
|
},
|
||
|
});
|
||
|
</script>
|