vue——2
Posted cl94
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue——2相关的知识,希望对你有一定的参考价值。
<div ref="hexad"> </div> vue操作dom this.$refs.hexad.innerhtml = ‘nihao‘ vue动画 <template> <div id="demo"> <button v-on:click="show = !show"> Toogle </button> <transition name="fade"> <p v-if="show">hello</p> </transition> </div> </template> <script> export default{ data(){ return { show: true, } }, mounted :function() { }, methods : { } } </script> <style> /* 显示 => 隐藏 */ .fade-leave-active{ transition: opacity 2s; } .fade-leave,.fade-enter-to{ opacity: 1; } .fade-leave-to,.fade-enter{ opacity: 0; } /* 隐藏 => 显示 */ .fade-enter-active{ transition: opacity 1s; } </style>
https://www.cnblogs.com/fxwoniu/p/11359273.html
以上是关于vue——2的主要内容,如果未能解决你的问题,请参考以下文章