This file contains hidden or 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
<template lang="html"> | |
<v-progress-circular :rotate="360" | |
:size="100" | |
:width="15" | |
:value="value" | |
color="teal" | |
> | |
{{ value }} | |
</v-progress-circular> | |
</template> |
This file contains hidden or 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
<v-stepper v-model="step" value="1" vertical> | |
<v-stepper-step color="teal" :complete="step > 1" step="1" editable> | |
<small>1. Datos del contrato</small> | |
</v-stepper-step> | |
<v-stepper-content step="1"> | |
<!-- <v-card color="grey lighten-1" class="mb-5" height="200px"></v-card> --> | |
<div class="step_buttons"> | |
<v-btn color="teal" @click="step = 1" left><</v-btn> | |
<v-btn color="teal" @click="step = 2" right>></v-btn> | |
</div> |
This file contains hidden or 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
server { | |
# Establece la dirección y puerto IP, o la ruta de un socket UNIX-domain en donde el servidor aceptará solicitudes. | |
listen *:80; | |
#listen 80 default_server; #Establece este servidor como predeterminado, en lugar del que incluye en nginx.conf | |
# Establece el dominio (header 'Host') para el que va a aceptar las solicitudes. | |
server_name example.local www.example.local; | |
# Para debug este ejercicio. |