| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | <template> | 
					
						
							| 
									
										
										
										
											2020-03-30 14:26:19 +02:00
										 |  |  |   <v-app class="srd"> | 
					
						
							| 
									
										
										
										
											2020-03-30 11:03:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <NavDrawer /> | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-28 10:42:54 +01:00
										 |  |  |     <Navbar /> | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-28 10:42:54 +01:00
										 |  |  |     <v-content> | 
					
						
							|  |  |  |       <v-container class="fill-height" fluid> | 
					
						
							| 
									
										
										
										
											2020-03-30 11:03:20 +02:00
										 |  |  |         <v-row align="start" justify="center"> | 
					
						
							|  |  |  |           <v-col cols="12"> | 
					
						
							|  |  |  |             <DefaultGlobalLayout/> | 
					
						
							|  |  |  |           </v-col> | 
					
						
							| 
									
										
										
										
											2020-03-28 10:42:54 +01:00
										 |  |  |         </v-row> | 
					
						
							|  |  |  |       </v-container> | 
					
						
							|  |  |  |     </v-content> | 
					
						
							|  |  |  |   </v-app> | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | </template> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <script> | 
					
						
							|  |  |  | import GlobalLayout from '@app/components/GlobalLayout.vue' | 
					
						
							|  |  |  | import Navbar from '@theme/components/Navbar.vue' | 
					
						
							| 
									
										
										
										
											2020-03-30 11:03:20 +02:00
										 |  |  | import NavDrawer from '@theme/components/NavDrawer.vue' | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | export default { | 
					
						
							|  |  |  |   name: 'GlobalLayout', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   components: { | 
					
						
							|  |  |  |     DefaultGlobalLayout: GlobalLayout, | 
					
						
							| 
									
										
										
										
											2020-03-30 11:03:20 +02:00
										 |  |  |     Navbar, | 
					
						
							|  |  |  |     NavDrawer | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   data () { | 
					
						
							|  |  |  |     return { | 
					
						
							| 
									
										
										
										
											2020-03-28 10:42:54 +01:00
										 |  |  |       items: [ | 
					
						
							|  |  |  |         { icon: 'mdi-contacts', text: 'Contacts' }, | 
					
						
							|  |  |  |         { icon: 'mdi-history', text: 'Frequently contacted' }, | 
					
						
							|  |  |  |         { icon: 'mdi-content-copy', text: 'Duplicates' }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |           icon: 'mdi-chevron-up', | 
					
						
							|  |  |  |           'icon-alt': 'mdi-chevron-down', | 
					
						
							|  |  |  |           text: 'Labels', | 
					
						
							|  |  |  |           model: true, | 
					
						
							|  |  |  |           children: [ | 
					
						
							|  |  |  |             { icon: 'mdi-plus', text: 'Create label' }, | 
					
						
							|  |  |  |           ], | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |           icon: 'mdi-chevron-up', | 
					
						
							|  |  |  |           'icon-alt': 'mdi-chevron-down', | 
					
						
							|  |  |  |           text: 'More', | 
					
						
							|  |  |  |           model: false, | 
					
						
							|  |  |  |           children: [ | 
					
						
							|  |  |  |             { text: 'Import' }, | 
					
						
							|  |  |  |             { text: 'Export' }, | 
					
						
							|  |  |  |             { text: 'Print' }, | 
					
						
							|  |  |  |             { text: 'Undo changes' }, | 
					
						
							|  |  |  |             { text: 'Other contacts' }, | 
					
						
							|  |  |  |           ], | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { icon: 'mdi-settings', text: 'Settings' }, | 
					
						
							|  |  |  |         { icon: 'mdi-message', text: 'Send feedback' }, | 
					
						
							|  |  |  |         { icon: 'mdi-help-circle', text: 'Help' }, | 
					
						
							|  |  |  |         { icon: 'mdi-cellphone-link', text: 'App downloads' }, | 
					
						
							|  |  |  |         { icon: 'mdi-keyboard', text: 'Go to the old version' }, | 
					
						
							|  |  |  |       ], | 
					
						
							| 
									
										
										
										
											2020-03-26 19:04:23 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   computed: { | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   mounted () { | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   methods: { | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </script> |