Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/vue/views/page/Update.vue

17 lines
410 B

<template>
<PageForm
v-model="item"
@submit="updateItem"
/>
<Loading :visible="isLoading" />
</template>
<script setup>
import Loading from "../../components/Loading.vue"
import PageForm from "../../components/page/Form.vue"
import { useDatatableUpdate } from "../../composables/datatableUpdate"
const { item, isLoading, retrieve, updateItem } = useDatatableUpdate("Page")
retrieve()
</script>