added db migrations for users and initial data added first controllers added auth middleware added rest routes and controller stub ...
14 lines
143 B
Vue
14 lines
143 B
Vue
<template>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import BELayout from '@/layouts/BELayout.vue'
|
|
|
|
defineOptions({
|
|
layout: BELayout
|
|
})
|
|
|
|
</script>
|
|
|