gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div className="flights-records"> | |
<div className="grid grid-cols-1 gap-4"> | |
{[1, 2, 3, 4, 5].map((items, key) => ( | |
<div key={key} className="border-secondary border-b py-4"> | |
<div className="border border-gray-400 rounded-2xl p-2 md:p-4 mb-2"> | |
<div className="grid grid-cols-6 md:grid-cols-5"> | |
<div className="col-span-2 md:col-span-1 flex flex-col justify-center"> | |
<span className="text-secondary font-semibold text-lg md:text-xl">Ida</span> | |
<span className="text-xs md:text-sm font-light">23/07/2021</span> | |
<img src={AaLogo} alt="logo refer" className="object-cover w-full ml-auto block md:hidden" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/containers/dashboard/Dashboard.vue | |
<template> | |
<el-container class="main-container"> | |
<sidebar /> | |
<el-container> | |
<el-header> | |
<Header /> | |
</el-header> | |
<el-main> | |
<router-view /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/App.vue | |
<template> | |
<div id="app"> | |
<router-view /> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: "App", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//router/index.js | |
import Vue from "vue"; | |
import Router from "vue-router"; | |
Vue.use(Router); | |
const router = new Router({ | |
mode: "history", | |
routes: [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package miprimerproyecto; | |
import java.util.Scanner; | |
import javax.lang.model.util.ElementScanner6; | |
public class Calculadora { | |
public static void main(String[] args) { | |
Scanner teclado = new Scanner(System.in); | |
int numeroUno; |