摘要: 第三方库地址:https://animate.style/ 首先安装库 npm install animate.css Test.vue <template> <div> <button @click="isShow = !isShow">显示/隐藏</button> <!--transition包 阅读全文
posted @ 2021-10-27 17:07 曲奇酸奶 阅读(61) 评论(0) 推荐(0)
摘要: Test使用的是动画效果、Test1使用的是过渡效果 实现点击按钮会让文字“你好啊!”显示或隐藏 Test.vue <template> <div> <button @click="isShow = !isShow">显示/隐藏</button><!--transition包裹的h1应用动画效果;a 阅读全文
posted @ 2021-10-27 15:05 曲奇酸奶 阅读(156) 评论(0) 推荐(0)
摘要: 子组件给父组件传数据 App.vue <!--App组件结构--> <template> <div> <!--通过父组件给子组件传递函数类型的props实现:子给父传递数据--> <School :getSchoolName="getSchoolName"></School> <!--通过父组件给子 阅读全文
posted @ 2021-10-27 10:10 曲奇酸奶 阅读(102) 评论(0) 推荐(0)