Commit e8a8d8894d218209d8a3d3dc8998d53e0fb65e4b
1 parent
c82c4bb8
fix(notification): fix appear transition invalid after vue 2.6.9
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/components/base/notification/notice.vue
1 | 1 | <template> |
2 | - <transition :name="transitionName" @enter="handleEnter" @leave="handleLeave"> | |
2 | + <transition :name="transitionName" @enter="handleEnter" @leave="handleLeave" appear> | |
3 | 3 | <div :class="classes" :style="styles"> |
4 | 4 | <template v-if="type === 'notice'"> |
5 | 5 | <div :class="contentClasses" ref="content" v-html="content"></div> | ... | ... |