Calendar: Rename components - refs BT#20903

pull/4859/head
Angel Fernando Quiroz Campos 1 year ago
parent 1cf69e0e1d
commit 7375b42076
  1. 0
      assets/vue/components/ccalendarevent/CCalendarEventForm.vue
  2. 0
      assets/vue/components/ccalendarevent/CCalendarEventInfo.vue
  3. 0
      assets/vue/components/ccalendarevent/CCalendarEventLayout.vue
  4. 8
      assets/vue/router/ccalendarevent.js
  5. 2
      assets/vue/views/ccalendarevent/CCalendarEventCreate.vue
  6. 4
      assets/vue/views/ccalendarevent/CCalendarEventList.vue
  7. 0
      assets/vue/views/ccalendarevent/CCalendarEventShow.vue

@ -3,22 +3,22 @@ export default {
meta: { requiresAuth: true },
name: 'ccalendarevent',
redirect: { name: 'CCalendarEventList' },
component: () => import('../components/ccalendarevent/Layout.vue'),
component: () => import('../components/ccalendarevent/CCalendarEventLayout.vue'),
children: [
{
name: 'CCalendarEventShow',
path: 'show',
component: () => import('../views/ccalendarevent/Show.vue')
component: () => import('../views/ccalendarevent/CCalendarEventShow.vue')
},
{
name: 'CCalendarEventCreate',
path: 'new',
component: () => import('../views/ccalendarevent/Create.vue')
component: () => import('../views/ccalendarevent/CCalendarEventCreate.vue')
},
{
name: 'CCalendarEventList',
path: '',
component: () => import('../views/ccalendarevent/List.vue')
component: () => import('../views/ccalendarevent/CCalendarEventList.vue')
}
]
};

@ -13,7 +13,7 @@
<script>
import { mapActions, mapGetters, useStore } from "vuex"
import { createHelpers } from "vuex-map-fields"
import CCalendarEventForm from "../../components/ccalendarevent/Form.vue"
import CCalendarEventForm from "../../components/ccalendarevent/CCalendarEventForm.vue"
import Loading from "../../components/Loading.vue"
import Toolbar from "../../components/Toolbar.vue"
import CreateMixin from "../../mixins/CreateMixin"

@ -115,8 +115,8 @@ import FullCalendar from "@fullcalendar/vue3"
import dayGridPlugin from "@fullcalendar/daygrid"
import interactionPlugin from "@fullcalendar/interaction"
import timeGridPlugin from "@fullcalendar/timegrid"
import CCalendarEventForm from "../../components/ccalendarevent/Form.vue"
import CCalendarEventInfo from "../../components/ccalendarevent/Info"
import CCalendarEventForm from "../../components/ccalendarevent/CCalendarEventForm.vue"
import CCalendarEventInfo from "../../components/ccalendarevent/CCalendarEventInfo"
import allLocales from "@fullcalendar/core/locales-all"
import BaseButton from "../../components/basecomponents/BaseButton.vue"
import { useToast } from "primevue/usetoast"
Loading…
Cancel
Save