Skip to content

Commit

Permalink
Merge pull request #2 from marelycarcamo/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
marelycarcamo authored Feb 14, 2024
2 parents da32086 + 6836723 commit b2c0e73
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions componentes/componenteCard.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/* The code is defining a Vue component called "card". */
/* The code is defining a Vue component called "card". This component has four props: "nombre",
"imagen", "url", and "resumen". The template section contains the HTML markup for the component,
which includes a card layout with an image, title, summary, and a link to view more information. The
props are used to dynamically populate the component with data when it is used in the application. */
app.component("card",{

props:["nombre","imagen","url","resumen"],
Expand Down
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
<!DOCTYPE html>
<!-- Programa galeria card
Este programa crea un pequeña galería utilizando un componente card. -->

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta name="author" content="marely">

| <!--Vue js-->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384- BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
Expand Down
2 changes: 1 addition & 1 deletion js/galeriaFramework.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const datos={
{nombre:"Angular",imagen:"imagenes/imagen_angular.jpg",url:"https://angular.io/" ,resumen:"Angular es un framework para aplicaciones web desarrollado en TypeScript, de código abierto, mantenido por Google, que se utiliza para crear y mantener aplicaciones web de una sola página."},
{nombre:"Laravel",imagen:"imagenes/imagen_laravel.jpg",url:"https://laravel.com/", resumen:"Laravel es un framework de código abierto para desarrollar aplicaciones y servicios web con PHP 5 y PHP 7. Su filosofía es desarrollar código PHP de forma elegante y simple, evitando el 'código espagueti'."},
{nombre:"React",imagen:"imagenes/imagen_react.jpg",url:"https://es.reactjs.org/", resumen:"React es un framework de código abierto diseñado para crear interfaces de usuario para facilitar el desarrollo de aplicaciones en una sola página. Es mantenido por Facebook y la comunidad de software libre."},
{nombre:"Vue",imagen:"imagenes/imagen_vue.jpg",url:"ttps://vuejs.org/",resumen:"Vue.js es un framework de código abierto para la construcción de interfaces de usuario y aplicaciones de una sola página. Fue creado por Evan You, y es mantenido por él y por el resto del equipo central.​"}
{nombre:"Vue",imagen:"imagenes/imagen_vue.jpg",url:"https://vuejs.org/",resumen:"Vue.js es un framework de código abierto para la construcción de interfaces de usuario y aplicaciones de una sola página. Fue creado por Evan You, y es mantenido por él y por el resto del equipo central.​"}
]
}
}
Expand Down

0 comments on commit b2c0e73

Please sign in to comment.