"src/views/src/views/admin" did not exist on "3f9b6187164b52d52fa4cc94272c673ca9e92ac4"
Index.vue 404 Bytes
Newer Older
Yoelvis Gonzalez's avatar
Yoelvis Gonzalez 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
<script>
  // Extensions
  import View from '@/views/View'

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

  export default {
    name: 'Registro',

    metaInfo: { title: 'Registro' },

    extends: View,

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

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