mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 17:07:19 +08:00
* feat: 添加系统管理-菜单管理 * chore: update * chore: add Copyright in login page * chore: 将页脚放在一屏可视区 * chore: 依赖更新 * chore: update * chore: update * chore: 更新依赖 * chore: update `husky v9` * style: 适配`el-dialog`样式的更新 * style: update `src/layout/components/search/components/SearchResult.vue` * chore: update * style: update * fix: 修复`ReDialog`中点击取消和确定按钮会触发两次关闭回调 * chore: update * chore: update src/views/system/menu/README.md * chore: update * chore: update * chore: done * chore: update
35 lines
753 B
Vue
35 lines
753 B
Vue
<script setup lang="ts">
|
|
import { ref, watch } from "vue";
|
|
import ReAnimateSelector from "@/components/ReAnimateSelector";
|
|
|
|
defineOptions({
|
|
name: "AnimateCss"
|
|
});
|
|
|
|
const animate = ref("");
|
|
|
|
watch(animate, () => {
|
|
console.log("animate", animate.value);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<el-card shadow="never">
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span class="font-medium">
|
|
<el-link
|
|
href="https://animate.style/"
|
|
target="_blank"
|
|
style="margin: 0 4px 5px; font-size: 16px"
|
|
>
|
|
animate.css
|
|
</el-link>
|
|
选择器
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<ReAnimateSelector v-model="animate" class="!w-[200px]" />
|
|
</el-card>
|
|
</template>
|