this.$ref.inputxxx.focus()
必须DOM更新后再执行,否则不生效,这样就要使用nextTick来解决问题this.$nextTick(function(){
this.$refs.inputTitle.focus()
})
1.作用:在插入、更新或移除DOM元素时,在合适的时候给元素添加样式类名。
2.图示:
v-enter:进入的起点 v-enter-to:进入的终点
v-leave:离开的起点 v-leave-to:离开的终点
3.写法
准备好样式
使用包裹要过度的元素,并配置name属性
<transition name="hello" appear>
<h1 v-show="isShow">你好啊!</h1>
</transition>`
<transition-group>
,且每个元素都要指定key值。推荐:https://animate.style
npm install animate.css
<script></script>
标签中引入import animate.css
<transition-group
appear
name="animate__animated animate__bounce"
enter-active-class="animate__swing"
leave-active-class="animate__backOutUp"
>
<h1 v-show="isShow" key="1">你好北京!</h1>
<h1 v-show="!isShow" key="2">上海您好!</h1>
</transition-group>