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

22 lines
326 B
Vue

<template>
<div>
<tiny-alert custom-class="customClass" type="error" description="type 为 error"></tiny-alert>
</div>
</template>
<script>
import { Alert } from '@opentiny/vue'
export default {
components: {
TinyAlert: Alert
}
}
</script>
<style scoped>
.customClass {
background-color: pink;
}
</style>