Skip to content

t-dialog

支持平台

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

示例

html
<template>
	<!-- #ifdef APP -->
	<scroll-view style="flex:1">
	<!-- #endif -->
		<view class="t-wrap">
			<view class="t-page__bd t-page__spacing">
				<t-button type="primary" margin="24rpx" @click="showDialog">打开窗口</t-button>
			</view>
			<t-dialog v-model:visible="visible" title="提示" content="提示内容提示内容提示内容提示内容"></t-dialog>
		</view>
	<!-- #ifdef APP -->
	</scroll-view>
	<!-- #endif -->
</template>

<script>
	export default {
		data() {
			return {
				visible: false,
			}
		},
		methods: {
			showDialog() {
				this.visible = !this.visible
			}
		}
	}
</script>

<style lang="scss" scoped>

</style>

Props

名称描述类型默认值可选值
visible是否显示提示框Booleanfalse
title提示框标题String提示
content提示框内容String
cancelText取消按钮文本String取消
confirmText确定按钮文本String确定

Events

事件名描述回调参数版本
----