Skip to content

Action-Menu 选项菜单

从底部操作菜单(分享等菜单)-插槽用法灵活布局

支持平台

安卓iosweb微信小程序支付宝小程序QQ小程序
xxx

示例

html
<template>
	<t-page title="底部操作菜单" class="p.30">
		<t-card class="mb.30" title="ActionMenu" subTitle="从底部操作菜单(分享等菜单)-插槽用法灵活布局"></t-card>
		<t-action-menu title="请选择" class="tdr...ur" button-text="取消">
			<template v-slot:button>
				<t-button class="mb.30">菜单</t-button>
			</template>
			<t-col class="mtb.20">
				<t-row class="tdp.l-fc-tvg-mb.2px" :hover="true" v-for="i in 3">
					<t-text>选项{{i}}</t-text>
				</t-row>
			</t-col>
		</t-action-menu>
		<t-action-menu title="分享到" class="tdr...ur" button-text="取消">
			<template v-slot:button>
				<t-button class="mb.30">分享</t-button>
			</template>
			<t-row class="mtb.10-tvg">
				<t-swiper :indicatorDots='true' :circular="true" class='h.200'>
					<t-swiper-item class="fl-fc">
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/wx.png"></t-image>
							<t-text>微信</t-text>
						</t-col>
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/qq.png"></t-image>
							<t-text>QQ</t-text>
						</t-col>
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/zfb.png"></t-image>
							<t-text>支付宝</t-text>
						</t-col>
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/dy.png"></t-image>
							<t-text>抖音</t-text>
						</t-col>
					</t-swiper-item>
					<t-swiper-item class="fl-fc">
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/tb.png"></t-image>
							<t-text>淘宝</t-text>
						</t-col>
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/tm.png"></t-image>
							<t-text>天猫</t-text>
						</t-col>
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/jd.png"></t-image>
							<t-text>京东</t-text>
						</t-col>
						<t-col class="faic-mlbr.40">
							<t-image class="twh.60 mb.10" src="/static/image/pdds.png"></t-image>
							<t-text>拼多多</t-text>
						</t-col>
					</t-swiper-item>
				</t-swiper>
			</t-row>
		</t-action-menu>
		<t-action-menu title="请选择" class="tdr-m.30" button-text="取消">
			<template v-slot:button>
				<t-button class="mb.30">设置样式</t-button>
			</template>
			<t-col class="mtb.10">
				<t-row class="tdp.l-fc-tvg-mb.2px" :hover="true" v-for="i in 3">
					<t-text>选项{{i}}</t-text>
				</t-row>
			</t-col>
		</t-action-menu>
	</t-page>
</template>
<script setup>
</script>

Props

名称描述类型默认值可选值
title菜单标题String'标题'-
buttonText按钮文本String'取消'-

Events

事件名描述回调参数版本
show显示菜单--

Slots

名称描述
default菜单内容区域
button按钮区域,用于自定义按钮