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

16 lines
257 B
Vue

<template>
<div>
<tiny-alert custom-class="bg-color-bg-2" type="error" description="type 为 error"></tiny-alert>
</div>
</template>
<script>
import { TinyAlert } from '@opentiny/vue'
export default {
components: {
TinyAlert
}
}
</script>