feat: 添加AnimateCss选择器组件ReAnimateSelector (#764)

* feat: 添加`AnimateCss`选择器组件`ReAnimateSelector`

* chore: update
This commit is contained in:
xiaoming
2023-10-21 15:00:44 +08:00
committed by GitHub
parent b325442e82
commit 59fcac86c4
7 changed files with 291 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<script setup lang="ts">
import { ref, watch } from "vue";
import ReAnimateSelector from "@/components/ReAnimateSelector";
defineOptions({
name: "AnimateCss"
});
const icon = ref("");
watch(icon, () => console.log("icon", icon.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="icon" />
</el-card>
</template>