-
Notifications
You must be signed in to change notification settings - Fork 13
/
Vuetify.txt
1040 lines (860 loc) · 22.5 KB
/
Vuetify.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=====================
Guía de Vuetify by dM
=====================
Vuetify es una biblioteca de interfaz de usuario de Vue con componentes de
materiales bellamente hechos a mano. No se requieren habilidades de diseño: todo
lo que necesita para crear aplicaciones increíbles está al alcance de su mano.
===========
Instalación
===========
Comience con Vuetify, se requeire de el framework Vue.js, el más popular del
mundo para crear aplicaciones ricas en funciones y ultrarrápidas.
Si aún no ha creado un nuevo proyecto Vue.js usando Vue CLI, puede hacerlo
escribiendo:
Chequear la versión de Vue CLI instalada:
$ vue --version
Si no está instalada, chequear la guía de Vuejs, si está instalada, prosiga.
$ vue create my-app
Navegue hasta el directorio creado
$ cd my-app
Ahora que tiene un proyecto instanciado, puede agregar el paquete Vuetify:
$ vue add vuetify
Correr la aplicación desde un servidor de desarrollo de node
$ npm run serve
La app correra desde http://localhost:8080/
===========
Uso con CDN
===========
Para probar el uso de Vuetify sin instalar una plantilla de Vue CLI, copie el
código a continuación en su archivo index.html. Esto extraerá la última versión
de Vue y Vuetify, lo que le permitirá comenzar a jugar con los componentes.
También puedes usar el iniciador de Vuetify.
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
<body>
<div id="app">
<v-app>
<v-main>
<v-container>Hello world</v-container>
</v-main>
</v-app>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script>
<script>
new Vue({
el: '#app',
vuetify: new Vuetify(),
})
</script>
</body>
</html>
=================================================
Crear proyecto con Vue CLI + vue-router + Vuetify
=================================================
Vue router
==========
Vue, como muchos otros frameworks para el desarrollo web (Angular, React)
también tiene un sistema para crear rutas.
Vue permite crear páginas web SPA, es decir, el usuario tiene la sensación de
que está navegando entre las páginas pero lo que de verdad ocurre es que Vue por
debajo está cambiando el HTML al vuelo sin tener que recargar la página.
Por ejemplo, si estás en la página principal de una aplicación SPA y navegas a
la URL /users, Vue lo que hace es renderizar el componente asociado a esa ruta
en la página web. Como ese componente ya lo tiene cargado el cambio entre
páginas es inmediato.
Para conseguir esto, el creador del Vue router ha desarrollado un conjunto de
utilidades para crear rutas en Vue. En un fichero configuras las rutas que
quieres crear y las asocias a componentes que se cargarán cuando el usuario
navegue a la ruta.
Chequear la versión de Vue CLI instalada:
$ vue --version
Si no está instalada, chequear la guía de Vuejs, si está instalada, prosiga.
$ vue create my-app
Le pedirá que seleccione un entorno preestablecido, seleccionar el manual, luego
le pedirá que seleccione las características necesarias para su proyecto, debe
escoger las siguientes con espacio y luego enter en la primera:
* Choose Vue version
* Babel
TypeScript
Progressive Web App (PWA) Support
* Router
Vuex
* CSS Pre-processors
* Linter / Formatter
Unit Testing
E2E Testing
Le seguirá pidiendo otras características pero ya ligadas a las selecciones
principales.
Una vez finalizado el proceso, navegue hasta el directorio creado
$ cd my-app
Ahora que tiene un proyecto instanciado, puede agregar el paquete Vuetify:
$ vue add vuetify
Correr la aplicación desde un servidor de desarrollo de node
$ npm run serve
La app correra desde http://localhost:8080/
==============================
Usar iconos de material desing
==============================
<v-icon dark>
mdi-chevron-left
</v-icon>
Lista de íconos que se pueden usar: https://materialdesignicons.com/
===========================================================
Cambiar el color de fondo de todos los componente de la app
===========================================================
// App.vue
<template>
<v-app>
<v-main style="background-color: rgb(41, 31, 102);">
<router-view/>
</v-main>
</v-app>
</template>
ó
<template>
<v-app>
<v-main class="red">
<router-view/>
</v-main>
</v-app>
</template>
===============================================
Cambiar el color de fondo de un solo componente
===============================================
Para que no arrastre el color a todos los componentes, tiene que asignarse en
todos los componentes.
methods: {
setBackground () {
document.querySelector('.v-application').setAttribute('style', 'background-color: #ffffff')
}
},
mounted () {
this.setBackground()
}
=======================================
Agregar colores personalizados a un div
=======================================
// vuetify.js
import Vue from 'vue'
import Vuetify from 'vuetify/lib/framework'
import colors from 'vuetify/lib/util/colors'
// import colors from 'vuetify/es5/util/colors'
Vue.use(Vuetify)
export default new Vuetify({
theme: {
themes: {
light: {
// primary: '#3f51b5',
primary: colors.red.darken1,
colorPersonalizado: '#000000'
}
}
}
})
// mi_componente.vue
<template>
<v-container>
<div class="colorPersonalizado">
<v-layout>
<router-link
to="/home"
Inicio
</router-link>
</v-layout>
</div>
</v-container>
</template>
==================================================
Quitar la decoración de un enlace tipo router-link
==================================================
<router-link
to="/"
class="blue--text"
style="text-decoration: none; color: inherit;">
<b>Home</b>
</router-link>
===================
Columnas en Vuetify
===================
// 2 Columnas
<v-row class="text-center">
<v-col cols="6">
xxxxxxxxxxxx
</v-col>
<v-col cols="6">
xxxxxxxxxxxx
</v-col>
</v-row>
// 3 Columnas
<v-row class="text-center">
<v-col cols="4">
xxxxxxxxxxxx
</v-col>
<v-col cols="4">
xxxxxxxxxxxx
</v-col>
<v-col cols="4">
xxxxxxxxxxxx
</v-col>
</v-row>
====================
Alineación de textos
====================
<template>
<div>
<p class="text-left">
Left aligned text on all viewport sizes.
</p>
<p class="text-center">
Center aligned text on all viewport sizes.
</p>
<p class="text-right">
Right aligned text on all viewport sizes.
</p>
<p class="text-sm-left">
Left aligned text on viewports sized SM (small) or wider.
</p>
<p class="text-md-left">
Left aligned text on viewports sized MD (medium) or wider.
</p>
<p class="text-lg-left">
Left aligned text on viewports sized LG (large) or wider.
</p>
<p class="text-xl-left">
Left aligned text on viewports sized XL (extra-large) or wider.
</p>
</div>
</template>
========================
Cambiar tamaño del texto
========================
Seleccionar la clase o componente adecuado a través de los estilos, o agregar
una clase personalizadas.
.v-card {
font-size: 0.85em;
}
.my_text {
font-size: 0.85em;
}
===========
Breadcrumbs
===========
Template:
<template>
<div>
<v-breadcrumbs :items="items"></v-breadcrumbs>
<v-breadcrumbs
:items="items"
large
></v-breadcrumbs>
</div>
</template>
Script:
<script>
export default {
data: () => ({
items: [
{
text: 'Dashboard',
disabled: false,
href: 'breadcrumbs_dashboard',
},
{
text: 'Link 1',
disabled: false,
href: 'breadcrumbs_link_1',
},
{
text: 'Link 2',
disabled: true,
href: 'breadcrumbs_link_2',
},
],
}),
}
</script>
======================
Ventana modal o dialog
======================
<template>
<v-row justify="center">
<v-dialog
v-model="dialog"
persistent
max-width="290"
>
<template v-slot:activator="{ on, attrs }">
<v-btn
color="primary"
dark
v-bind="attrs"
v-on="on"
>
Open Dialog
</v-btn>
</template>
<v-card>
<v-card-title class="text-h5">
Use Google's location service?
</v-card-title>
<v-card-text>Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn
color="green darken-1"
text
@click="dialog = false"
>
Disagree
</v-btn>
<v-btn
color="green darken-1"
text
@click="dialog = false"
>
Agree
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</v-row>
</template>
<script>
export default {
data () {
return {
dialog: false,
}
},
}
</script>
===============================
Mostrar imagen en un componente
===============================
1) Guardamos la imagen en /src/assets, ejemplo 1.png tal que /src/assets/1.png
2) En el template del componente agregamos:
<v-img
alt="XXX"
class=""
contain
:src="myImage"
transition="scale-transition"
width="50"
/>
y en el script:
export default {
data () {
return {
myImage: require('@/assets/1.png')
}
},
.
.
.
Con esto ya se debería ver la imagen en el componente.
-----
Otra manera es simplemente pasando la ruta en el atributo de v-img
<v-img
alt="XXX"
class=""
contain
src="@/assets/logo-inversa.png"
transition="scale-transition"
width="50"
/>
=====================================================
Cambiar el color de fondo de un componente de Vuetify
=====================================================
<v-app style="background-color: rgb(41, 31, 102);">
<v-main>
<router-view/>
</v-main>
</v-app>
===============================
Centrar elementos, como botones
===============================
<v-layout justify-center>
<v-card-actions>
<v-btn primary>
<span>SignUp</span>
</v-btn>
</v-card-actions>
</v-layout>
==============================
Campo de tipo texto redondeado
==============================
<v-text-field
label="Correo electrónico"
v-model="email"
type="email"
name="email"
aria-label="Correo electrónico"
filled
rounded
dense
required>
</v-text-field>
==================
Dar color a enlace
==================
<v-layout justify-center>
<router-link
to="/password-reset"
style="color: #FFFFFF;">
OLVIDÉ MI CONTRASEÑA
</router-link>
</v-layout>
ó, con la clase nativa white--text
<v-layout justify-center>
<router-link
to="/password-reset"
class="white--text">
OLVIDÉ MI CONTRASEÑA
</router-link>
</v-layout>
====================================================================
Exportar la aplicacion para un entorno de producción - npm run build
====================================================================
Chequear que en el package.json este el comando build entre los scripts, de esa
se puede usar el siguiente comando:
$ npm run build
Este comando permite exportar la aplicacion para un entorno de producción,
genera la carpeta /dist que contiene todos los archivos necesarios para el
despliegue en el servidor. Para probar que todo esté bien, pegue el contenido
de la carpeta /dist en la carpeta www de su servidor http local y navegue hasta
127.0.0.1/ para probar la app.
Nota: Al exportar para producción la consola alerta y suguere cambios para
mejorar la app en producción, se debe estar atento a ellos.
======================================================
Pasar parametros con router-link para detail component
======================================================
En index.js tenemos el siguiente componente detail, al cual le vamos a pasar el
id de un objeto como parametro a través de un tag router-link.
{
path: '/store-detail/:id',
name: 'store-detail',
component: StoreDetail
},
Desde otro componente donde recibo el arreglo de objetos stores, lo recorro y
obtengo el id con store.id, se lo paso como parámetro en :to al componente
store-detail que lo va a recibir
<router-link
:to="{ name:'store-detail', params:{ id: store.id }}"
style="text-decoration: none; color: inherit;"
>
<h3 class="ma-0">{{ store.name }}</h3>
</router-link>
Ya en el componente StoreDetail.vue lo recibo e imprimo el valor recibido con
{{ store.name }} en el template
<script>
import axios from 'axios'
export default {
data: () => ({
store: [],
api_url: 'http://127.0.0.1:8000/'
}),
created () {
document.title = 'INVERSA - Tiendas'
console.log('params: ', this.$route.params.id)
},
methods: {
},
mounted () {
/*
* Establece los datos que van en la cabecera de la solicitud.
*/
const header = {
headers: {
'Content-Type': 'application/json;charset=UTF-8',
'Access-Control-Allow-Origin': '*',
'Content-Language': 'en'
}
}
/*
* Obtiene los datos de las tiendas.
*/
axios.get(this.api_url + 'api/stores/' + this.$route.params.id, header)
.then((response) => {
this.store = response.data.values
})
.catch((error) => {
console.log(error)
})
}
}
</script>
Otro ejemplo
============
//routes.js
path: '/:data',
name: 'Home',
component: () => import('pages/YourPage.vue')
//Passing parameters
this.$router.push({
name: 'Home',
params: { data: yourData}
});
//Receiving parameters in Home component
created() {
console.log('Params: ', this.$route.params);
}
==============================
Establecer una variable global
==============================
en main.js podemos establecer:
Vue.prototype.$api_url = 'http://127.0.0.1:8000/'
Luego ya en cualquier componente podemos llamarla
/*
* Obtiene los datos de las órdenes.
*/
axios.get(this.$api_url + 'api/orders', header)
.then((response) => {
this.orders = response.data
})
.catch((error) => {
console.log(error)
})
===========================================
Pasar parámetros a un componente de Vuetify
===========================================
Componente al cual le vamos a pasar un valor: AppBar.vue, este componente
lo vamos a renderizar dentro del componente Dashboard.vue.
<template>
<div>
{{ toolbartitle }}
<div>
</template>
<script>
export default {
name: 'AppBar',
props: ['toolbartitle'],
data: () => ({
})
}
</script>
El otro componente en desde el cual pasamos el valor como parámetros
Dashboard.vue
<template>
<div>
<AppBar toolbartitle="Mi título" />
<div>
</template>
<script>
import AppBar from '../components/AppBar'
export default {
components: {
AppBar
},
data: () => ({
})
}
</script>
==============================
Redirecionar a otro componente
==============================
Sirve por ejemplo para cambiar al componente Home luego del inicio de sesión
this.$router.push({ name: 'Home' })
Ejemplo
=======
login () {
const userData = {
email: this.email,
password: this.password
}
const header = {
headers: {
'Content-Type': 'application/json;charset=UTF-8',
'Access-Control-Allow-Origin': '*',
'Content-Language': 'en'
}
}
axios.post('http://127.0.0.1:8000/api/login', userData, header)
.then((response) => {
console.log(response)
this.$router.push({ name: 'Home' })
})
.catch((error) => {
console.log(error)
alert('Access denied')
})
}
==============
Botón flotante
==============
<template>
<v-btn
v-show="!hidden"
color="blue"
dark
absolute
top
right
fab
>
<v-icon>mdi-cart</v-icon>
</v-btn>
</template>
<script>
export default {
name: 'CreateOrderFloatingButton',
data: () => ({
hidden: false
})
}
</script>
<style scoped>
.v-btn {
}
</style>
===========================================
Componente Date Picker - Selector de fechas
===========================================
<template>
<div>
<v-menu
ref="menu"
v-model="menu"
:close-on-content-click="false"
:return-value.sync="date"
transition="scale-transition"
offset-y
min-width="auto"
>
<template v-slot:activator="{ on, attrs }">
<v-text-field
v-model="date"
label="Fecha"
prepend-icon="mdi-calendar"
readonly
v-bind="attrs"
v-on="on"
></v-text-field>
</template>
<v-date-picker
v-model="date"
no-title
scrollable
>
<v-spacer></v-spacer>
<v-btn
text
color="primary"
@click="menu = false"
>
Cancel
</v-btn>
<v-btn
text
color="primary"
@click="$refs.menu.save(date)"
>
OK
</v-btn>
</v-date-picker>
</v-menu>
</div>
</template>
<script>
export default {
name: 'ComponentName',
data: () => ({
date: (new Date(Date.now() - (new Date()).getTimezoneOffset() * 60000)).toISOString().substr(0, 10),
menu: false
})
}
</script>
<style scoped>
</style>
=========================================
Componente Time Picker - Selector de hora
=========================================
<template>
<div>
<v-menu
ref="menu"
v-model="menu2"
:close-on-content-click="false"
:nudge-right="40"
:return-value.sync="time"
transition="scale-transition"
offset-y
max-width="290px"
min-width="290px"
>
<template v-slot:activator="{ on, attrs }">
<v-text-field
v-model="time"
label="Picker in menu"
prepend-icon="mdi-clock-time-four-outline"
readonly
v-bind="attrs"
v-on="on"
></v-text-field>
</template>
<v-time-picker
v-if="menu2"
v-model="time"
full-width
@click:minute="$refs.menu.save(time)"
></v-time-picker>
</v-menu>
</div>
</template>
<script>
export default {
data () {
return {
time: null,
menu2: false,
}
},
}
</script>
=================================================================
Cómo usar correctamente el router-link con los botones de Vuetify
=================================================================
// router
const routes = [
{ path: '/panda', component: Panda }
];
// template
<div id="app">
<v-app>
<v-btn to="/panda">Kung Fu</v-btn>
</v-app>
</div>
===========================================
Agregar imagen en v-select o v-autocomplete
===========================================
Se usa template v-slot así:
<v-autocomplete
v-model="productSelected"
:items="products"
item-text="name"
item-value="id"
label="Producto"
>
<template v-slot:selection="data">
<v-img
:src="data.item.default_image"
height="100"
width="100"
>
</v-img>
{{ data.item.name }}
</template>
</v-autocomplete>
=====================================================
Cambiar el color de una imagen svg, invertir el color
=====================================================
Si por ejemplo el ícono es negro, con style="filter: invert(1)" lo invertimos
a blanco.
<v-img
class="mx-auto"
:src="@/assets/icons/report.svg"
height="60"
width="60"
style="filter: invert(1)"
></v-img>
Agregando ternario o condicional en el style, $vuetify.theme.dark puede ser true
o false:
<v-img
v-else
class="mx-auto"
:src="item.img"
height="60"
width="60"
:style="
$vuetify.theme.dark
? 'filter: invert(1)'
: 'filter: invert(0)'
"
></v-img>
Fuente
======
https://stackoverflow.com/questions/22252472/how-to-change-the-color-of-an-svg-element
==============================================================
Obtener el color del filter conviertiendo el color hexadecimal
==============================================================
https://isotropic.co/tool/hex-color-to-css-filter/#:~:text=Simply%20paste%20your%20color%20(as,the%20CSS%20code%20as%20needed.
========================
Remplazar coma por punto
========================
<p>{{ quantity | formatQuantity }}</p>
new Vue({
el: '#app',
data: {
quantity: 0.25,
},
filters: {
// you can call this whatever you want to
formatQuantity (value) {
return value.replace('.', ',');
}
}
});
Fuente
======
https://laracasts.com/discuss/channels/vue/how-to-replace-a-dot-with-a-comma-for-a-number-in-vuejs
===========================================================================
Generador de iconos para app (diferentes sistemas operativos y navegadores)
===========================================================================
https://realfavicongenerator.net
=======================================================
Validación, limitar el número de caracteres en un campo
=======================================================
<input v-model="amount"
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
type = "number"
maxlength = "10"
/>
===================================
Validación solo números en un campo
===================================
<input
type="number"
oninput="this.value=this.value.replace(/[^0-9]/g,'');"
v-model="record.dni"
/>
==========================================================
Configuración de .htaccess de Apache para Vue y vue-router