21 lines
583 B
Vue
21 lines
583 B
Vue
<template>
|
|
<div class="content">
|
|
<tiny-button @click="baseClick" :reset-time="0">自定义关闭图标</tiny-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Button as TinyButton, Notify } from '@opentiny/vue'
|
|
import { IconCloseSquare } from '@opentiny/vue-icon'
|
|
|
|
function baseClick() {
|
|
Notify({
|
|
type: 'info',
|
|
title: '通知',
|
|
message: '通知消息的正文,通知消息的正文,通知消息的正文,通知消息的正文,通知消息的正文,通知消息的正文',
|
|
closeIcon: IconCloseSquare(),
|
|
position: 'top-right'
|
|
})
|
|
}
|
|
</script>
|