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

14 lines
215 B
Vue

<template>
<tiny-alert center description="文字居中"></tiny-alert>
</template>
<script lang="jsx">
import { Alert } from '@opentiny/vue'
export default {
components: {
TinyAlert: Alert
}
}
</script>