You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.5 KiB
62 lines
1.5 KiB
<template>
|
|
<cl-page :padding="20">
|
|
<cl-toast ref="Toast"></cl-toast>
|
|
|
|
<cl-card label="基础用法">
|
|
<cl-button @tap="open()">默认</cl-button>
|
|
</cl-card>
|
|
|
|
<cl-card label="不同位置">
|
|
<cl-button @tap="open()">默认</cl-button>
|
|
<cl-button @tap="open({ position: 'top' })">顶部</cl-button>
|
|
<cl-button @tap="open({ position: 'center' })">中间</cl-button>
|
|
<cl-button @tap="open({ position: 'bottom' })">底部</cl-button>
|
|
</cl-card>
|
|
|
|
<cl-card label="不同类型">
|
|
<cl-button @tap="open({ type: 'success' })">成功</cl-button>
|
|
<cl-button @tap="open({ type: 'error' })">失败</cl-button>
|
|
<cl-button @tap="open({ type: 'warning' })">警告</cl-button>
|
|
<cl-button @tap="open({ type: 'info' })">信息</cl-button>
|
|
</cl-card>
|
|
|
|
<cl-card label="其他">
|
|
<cl-button @tap="open({ icon: 'cl-icon-good-fill', message: '带图标' })"
|
|
>带图标</cl-button
|
|
>
|
|
<cl-button
|
|
@tap="
|
|
open({
|
|
message: '带图片',
|
|
image: {
|
|
url: '/static/logo.png',
|
|
style: {
|
|
height: '200rpx',
|
|
width: '200rpx',
|
|
borderRadius: '20rpx',
|
|
},
|
|
},
|
|
})
|
|
"
|
|
>带图片</cl-button
|
|
>
|
|
</cl-card>
|
|
|
|
<cl-card label="不同类型">
|
|
<cl-button @tap="open({ clear: true })">只显示一个</cl-button>
|
|
</cl-card>
|
|
</cl-page>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from "vue";
|
|
|
|
const Toast = ref<ClToast.Ref>();
|
|
|
|
function open(data?: any) {
|
|
Toast.value?.open({
|
|
message: "请输入收货人姓名",
|
|
...data,
|
|
});
|
|
}
|
|
</script>
|
|
|