forked from opentiny/tiny-vue
23 lines
378 B
Vue
23 lines
378 B
Vue
<template>
|
|
<div class="alert-wrap">
|
|
<tiny-alert size="normal">size 为 normal (默认)</tiny-alert>
|
|
<tiny-alert size="large">size 为 large</tiny-alert>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Alert } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyAlert: Alert
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.alert-wrap .tiny-mobile-alert {
|
|
margin-bottom: 8px;
|
|
}
|
|
</style>
|