This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div>
<tiny-alert description="show-icon 默认值为 true,显示图标"></tiny-alert>
<tiny-alert :show-icon="false" description="show-icon 设置为 false,不显示图标"></tiny-alert>
</div>
</template>
<script setup>
import { Alert as TinyAlert } from '@opentiny/vue'
</script>