|
<template>
|
|
<div>
|
|
<tiny-alert size="normal" description="size 为 normal"></tiny-alert>
|
|
<tiny-alert size="large" title="size 为 large" description="size 为 large"></tiny-alert>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Alert as TinyAlert } from '@opentiny/vue'
|
|
</script>
|