mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-03 13:44:47 +08:00
feat: 添加AnimateCss选择器组件ReAnimateSelector (#764)
* feat: 添加`AnimateCss`选择器组件`ReAnimateSelector` * chore: update
This commit is contained in:
32
src/views/components/animatecss/index.vue
Normal file
32
src/views/components/animatecss/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user