14 lines
212 B
Vue
14 lines
212 B
Vue
<template>
|
|
<div>
|
|
Bin in Users
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import BELayout from '@/layouts/BELayout.vue'
|
|
import MainNav from '@/components/MainNav.vue'
|
|
|
|
defineOptions({ layout: BELayout })
|
|
|
|
</script> |