"src/views/assign/Index.vue" did not exist on "b0b8257c01b1afaaa7fbdac1b2cd5edd604f694c"
Index.vue 418 Bytes
Newer Older
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
<script>
  // Extensions
  import View from '@/views/View'

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

  export default {
    name: 'Asignar',

    metaInfo: { title: 'Asignar Paciente' },

    extends: View,

    mixins: [
      LoadSections([
        'ingresar-pacientes',
      ]),
    ],

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