Add initial "logo" component
still just proving some concepts at this point
This commit is contained in:
		
							parent
							
								
									41e65b33c8
								
							
						
					
					
						commit
						7bdaeee691
					
				
					 7 changed files with 78 additions and 9 deletions
				
			
		|  | @ -1,18 +1,25 @@ | |||
| <template> | ||||
|   <div class="home"> | ||||
|     <img alt="Vue logo" src="../assets/logo.png"> | ||||
|     <byjove-logo :appsettings="appsettings"></byjove-logo> | ||||
|     <HelloWorld msg="Welcome to Your Vue.js App"/> | ||||
|   </div> | ||||
| </template> | ||||
| 
 | ||||
| <script> | ||||
| // @ is an alias to /src | ||||
| import HelloWorld from '@/components/HelloWorld.vue' | ||||
| import appsettings from '@/appsettings' | ||||
| import {ByjoveLogo} from '@/components' | ||||
| import HelloWorld from '@/components/HelloWorld' | ||||
| 
 | ||||
| export default { | ||||
|   name: 'home', | ||||
|   components: { | ||||
|     HelloWorld | ||||
|   } | ||||
|     name: 'home', | ||||
|     components: { | ||||
|         ByjoveLogo, | ||||
|         HelloWorld | ||||
|     }, | ||||
|     data() { | ||||
|         return { | ||||
|             appsettings: appsettings, | ||||
|         } | ||||
|     }, | ||||
| } | ||||
| </script> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Lance Edgar
						Lance Edgar