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

17 lines
353 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<tiny-alert description="show-icon 默认值为 true显示图标"></tiny-alert>
<tiny-alert :show-icon="false" description="show-icon 设置为 false不显示图标"></tiny-alert>
</div>
</template>
<script>
import { Alert } from '@opentiny/vue'
export default {
components: {
TinyAlert: Alert
}
}
</script>