Migrated Balatro background component.

This commit is contained in:
msavulescu
2025-07-14 21:54:26 +03:00
parent 07ce88d997
commit 6705330900
5 changed files with 463 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import code from '@content/Backgrounds/Balatro/Balatro.vue?raw';
import type { CodeObject } from '../../../types/code';
export const balatro: CodeObject = {
cli: `npx jsrepo add https://vue-bits.dev/ui/Backgrounds/Balatro`,
installation: `npm install ogl`,
usage: `<template>
<Balatro
isRotate={false}
mouseInteraction={true}
pixelFilter={700}
/>
</template>
<script setup lang="ts">
import Balatro from "./Balatro.vue";
</script>`,
code
};