order-drawer.vue 649 B

12345678910111213141516171819202122
  1. <template>
  2. <el-drawer v-model="show" :show-close="false" direction="rtl" size="700px">
  3. <template #header>
  4. <div>
  5. <h1 class="">Search for products</h1>
  6. <el-divider />
  7. </div>
  8. </template>
  9. <template #footer>
  10. <div style="flex: auto">
  11. <el-button type="primary" @click="cancelClick" plain>close window</el-button>
  12. <el-button type="primary" @click="confirmClick">Join the checkout counter</el-button>
  13. </div>
  14. </template>
  15. </el-drawer>
  16. </template>
  17. <script setup>
  18. const show = defineModel('show')
  19. const showInput = defineModel('showInput')
  20. </script>
  21. <style lang="scss" scoped></style>