1
0

chore: rename package to render-math-problems

This commit is contained in:
AlanSilvaaa
2026-06-03 19:15:23 -04:00
parent 4badd0210c
commit 51e8801959
5 changed files with 16 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
# render-mathproblems
# render-math-problems
BlockSystem es una aplicación educativa interactiva construida con Vue 3, centrada en el componente **`Blocks.vue`**. Este componente permite a los usuarios colocar, arrastrar, agrupar y dividir bloques unitarios en una cuadrícula, fomentando la intuición matemática sobre agrupamiento y valor posicional (unidades y decenas).
@@ -11,15 +11,15 @@ Para detalles de la API y configuración de `Blocks.vue`, consulta `src/README.m
## Uso Como Paquete
```sh
npm install render-mathproblems
npm install render-math-problems
```
Importa el componente y sus estilos:
```vue
<script setup>
import { MathProblem } from "render-mathproblems";
import "render-mathproblems/style.css";
import { MathProblem } from "render-math-problems";
import "render-math-problems/style.css";
const exercise = {
exerciseType: "move-blocks",
@@ -47,7 +47,7 @@ const exercise = {
También puedes importar el nombre interno del componente:
```js
import { Blocks } from "render-mathproblems";
import { Blocks } from "render-math-problems";
```
## Requisitos