This commit is contained in:
魏啾
2024-03-06 10:48:30 +08:00
parent 48d6583a03
commit d29d8b7f93
4 changed files with 153 additions and 80 deletions

16
src/views/work/index.vue Normal file
View File

@@ -0,0 +1,16 @@
<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>