收藏
回答

用vue的方式 使用page-container,相关事件为何失效?

<template>
        <!--省略其他代码.........-->
	<!--弹窗-->
	<page-container :show="isShow" position="bottom" bind:enter="onEnter" bind:clickoverlay="onClickOverlay">
		<view class="space-view">
			<view class="modify-sub">
				<image src="/static/detail/guanbi.svg" mode="widthFix" @click="isShow=false"></image>
			</view>
			<view class="att-input">
				<input type="text" placeholder="请输入分类" placeholder-class="i-style" cursor-spacing="50"/>
			</view>
			<view class="newly-added classif">提交</view>
		</view>
	</page-container>

   <!--省略其他代码.........-->
</template>


<script setup>
	
      //.....省略

	function onClickOverlay(e) {
		console.log(e)
	}
</script>


<style>
<!--省略-->
</style>
回答关注问题邀请回答
收藏

1 个回答

  • 吴小棋
    吴小棋
    2023-11-23

    2023-11-23
    有用
    回复
登录 后发表内容