Files
mixtape/zero.Backoffice.UI/app/modules/mails/mailtemplate.vue
T

10 lines
263 B
Vue
Raw Normal View History

2021-12-21 13:58:48 +01:00
<template>
2021-12-27 11:32:58 +01:00
<ui-editor-page :api="api" editor="mailtemplates:edit" title="@mailtemplate.name" prefix="@mailtemplate.list" route="mailtemplates-edit" />
2021-12-21 13:58:48 +01:00
</template>
<script>
import api from './api';
export default {
2021-12-27 11:32:58 +01:00
data: () => ({ api })
2021-12-21 13:58:48 +01:00
}
</script>