Merge pull request #13 from sahildavid-dev/feat/sd_text-animations_glitch-text

feat(text-animations): add GlitchText component
This commit is contained in:
David
2025-07-12 18:45:21 +03:00
committed by GitHub
6 changed files with 339 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
import code from '@/content/TextAnimations/GlitchText/GlitchText.vue?raw';
import type { CodeObject } from '../../../types/code';
export const glitchText: CodeObject = {
cli: `npx jsrepo add https://vue-bits.dev/ui/TextAnimations/GlitchText`,
usage: `<template>
<GlitchText
children="Vue Bits"
:speed="0.5"
:enable-shadows="true"
:enable-on-hover="false"
/>
</template>
<script setup lang="ts">
import GlitchText from "./GlitchText.vue";
</script>`,
code
};