tiny-vue/examples/docs/resources/pc/demo/alert/size.vue

17 lines
310 B
Vue

<template>
<div>
<tiny-alert size="normal" description="size 为 normal"></tiny-alert>
<tiny-alert size="large" title="size 为 large"></tiny-alert>
</div>
</template>
<script lang="jsx">
import { Alert } from '@opentiny/vue'
export default {
components: {
TinyAlert: Alert
}
}
</script>