16 lines
181 B
Vue
16 lines
181 B
Vue
<template>
|
|
<div>
|
|
Bin in Events
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import BELayout from '@/layouts/BELayout.vue'
|
|
|
|
defineOptions({
|
|
layout: BELayout
|
|
})
|
|
|
|
</script>
|
|
|