c-admin-editor-page 
A page for a creating/editing single ViewModel instance. Provides a c-admin-editor and a c-admin-methods for the instance. Designed to be routed to directly with vue-router.
Check out Admin Pages for a full overview of the admin pages in Coalesce.
Examples 
ts
import { CAdminEditorPage } from 'coalesce-vue-vuetify3';
const router = new Router({
  // ...
  routes: [
    // ... other routes
    {
      path: '/admin/:type/edit/:id?',
      name: 'coalesce-admin-item',
      component: CAdminEditorPage,
      props: true,
    },
  ]
})Props 
type: string
type: stringThe PascalCase name of the type to be created/edited.
id?: number | string
id?: number | stringThe primary key of the item being edited. If null or not provided, the page will be creating a new instance of the provided type instead.
autoSave?: 'auto' | boolean = 'auto'
autoSave?: 'auto' | boolean = 'auto'Controls whether auto-save is used for the item. If auto (the default), auto-saves are used as long as the type has no init-only properties.