tiny-vue/examples/sites/demos/mobile-first/app/alert/center.vue

14 lines
204 B
Vue

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