tiny-vue/examples/sites/demos/pc/app/alert/basic-usage-composition-api...

16 lines
515 B
Vue

<template>
<div>
<tiny-alert description="type 为默认值 info"></tiny-alert>
<tiny-alert type="error" description="type 为 error"></tiny-alert>
<tiny-alert type="success" description="type 为 success"></tiny-alert>
<tiny-alert type="warning">
<template #description> type warning </template>
</tiny-alert>
<tiny-alert type="simple" description="type 为 simple"></tiny-alert>
</div>
</template>
<script setup>
import { Alert as TinyAlert } from '@opentiny/vue'
</script>