IngresarPacientes.vue 459 Bytes
Newer Older
krlsnvz93's avatar
krlsnvz93 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/* eslint-disabled */
<script>
  // Extensions
  import View from '@/views/View'

  // Mixins
  import LoadSections from '@/mixins/load-sections'

  export default {
    name: 'IngresarPacientes',

    metaInfo: { title: 'Inicio de Sesión' },

    extends: View,

    mixins: [
      LoadSections([
        'IngresarPacientes',
      ]),
    ],

    props: {
      id: {
        type: String,
        default: 'enter_patients',
      },
    },
  }
</script>