This commit is contained in:
F4ilji
2026-04-07 17:54:26 +05:00
parent 04adba6682
commit 936b1fb5b0
468 changed files with 43498 additions and 4176 deletions
@@ -0,0 +1,40 @@
<template>
<PostForm
:post="post"
:categories="categories"
:sliders="sliders"
:statuses="statuses"
/>
</template>
<script>
import PostForm from './Form.vue';
export default {
name: 'EditPost',
components: { PostForm },
props: {
post: {
type: Object,
required: true
},
categories: {
type: Array,
required: true
},
sliders: {
type: Array,
required: true
},
statuses: {
type: Array,
required: true
}
},
mounted() {
this.SET_DOCUMENT_TITLE(`Редактирование новости - ${this.post.title}`);
}
}
</script>