Alert add prop: fade

This commit is contained in:
梁灏 2021-09-14 16:02:52 +08:00
parent 02330edec5
commit 70f77072d7
2 changed files with 14 additions and 4 deletions

View file

@ -1,6 +1,7 @@
<template> <template>
<div> <div>
<Alert> <Button @click="show = !show">toggle show</Button>
<Alert v-if="show" :fade="false">
An info prompt An info prompt
<template slot="desc">Content of prompt. Content of prompt. Content of prompt. Content of prompt. </template> <template slot="desc">Content of prompt. Content of prompt. Content of prompt. Content of prompt. </template>
</Alert> </Alert>
@ -56,7 +57,7 @@
A success prompt A success prompt
<span slot="desc">Content of prompt. Content of prompt. Content of prompt. Content of prompt. </span> <span slot="desc">Content of prompt. Content of prompt. Content of prompt. Content of prompt. </span>
</Alert> </Alert>
<Alert type="warning" closable> <Alert type="warning" closable :fade="false">
Custom closing content Custom closing content
<span slot="close">No longer prompt</span> <span slot="close">No longer prompt</span>
</Alert> </Alert>
@ -65,6 +66,11 @@
<script> <script>
import { Alert, Icon } from 'iview'; import { Alert, Icon } from 'iview';
export default { export default {
components: { Alert, Icon } components: { Alert, Icon },
data () {
return {
show: true
}
}
} }
</script> </script>

View file

@ -1,5 +1,5 @@
<template> <template>
<transition name="fade"> <transition :name="fade ? 'fade' : ''">
<div v-if="!closed" :class="wrapClasses"> <div v-if="!closed" :class="wrapClasses">
<span :class="iconClasses" v-if="showIcon"> <span :class="iconClasses" v-if="showIcon">
<slot name="icon"> <slot name="icon">
@ -43,6 +43,10 @@
banner: { banner: {
type: Boolean, type: Boolean,
default: false default: false
},
fade: {
type: Boolean,
default: true
} }
}, },
data () { data () {