<template> <view> <scroll-view scroll-y="true" style="height: 450px;"> <slot></slot> </scroll-view> <view class="uni-flex u-row-center"> <image src="/static/icons/icons_close-circle.svg" class="icons_close" @click="closeScanPopup()"> </image> </view> </view> </template> <script> export default { emits: ["onClose"], components: { }, props: { }, data() { return { } }, methods: { closeScanPopup() { this.$emit("onClose", ); } } } </script> <style> </style> <style> </style>