mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
14 lines
352 B
Vue
14 lines
352 B
Vue
<template>
|
|
<BasicDrawer v-bind="$attrs" title="Drawer Title" width="50%"> Drawer Info. </BasicDrawer>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { BasicDrawer } from '/@/components/Drawer';
|
|
export default defineComponent({
|
|
components: { BasicDrawer },
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|