Files
layui/example/docs/zh-CN/components/transition.md

822 B

::: anchor :::

::: title 基础使用 :::

::: describe 过渡效果的使用将大幅提升用户的使用体验。 :::

::: title 基础使用 :::

::: demo 使用 lay-transition 标签, 为元素提供过渡动画

开始

  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • <script> import { ref } from 'vue' export default { setup() { const visible = ref(true); const changeVisible = () => { visible.value = !visible.value; } return { changeVisible } } } </script>

    :::