16 lines
338 B
Vue
16 lines
338 B
Vue
<template>
|
|
<el-drawer size="100%" :with-header="false" direction="btt" v-model="dialogVisible">
|
|
<div class="drawer_wrap">
|
|
</div>
|
|
</el-drawer>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
const dialogVisible = ref(false)
|
|
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style> |