Files
mixtape/zero.Backoffice.UI/app/modules/countries/country.vue
T

11 lines
246 B
Vue
Raw Normal View History

2020-04-21 15:21:03 +02:00
<template>
2021-12-27 11:32:58 +01:00
<ui-editor-page :api="api" editor="countries:edit" title="@country.name" prefix="@country.list" route="countries-edit" />
2020-04-21 15:21:03 +02:00
</template>
<script>
2021-12-14 14:21:48 +01:00
import api from './api';
2020-04-21 15:21:03 +02:00
export default {
2021-12-27 11:32:58 +01:00
data: () => ({ api })
2020-04-21 15:21:03 +02:00
}
2021-12-27 11:32:58 +01:00
</script>