tiny-vue_version0/examples/sites/demos/pc/app/alert/custom-class-composition-ap...

16 lines
285 B
Vue

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