forked from opentiny/tiny-vue
17 lines
353 B
Vue
17 lines
353 B
Vue
<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>
|