You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							567 B
						
					
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							567 B
						
					
					
				Vue.component('owncast-footer', { | 
						|
  template: ` | 
						|
    <footer class="flex border-t border-gray-500 border-solid"> | 
						|
      <span> | 
						|
        <a href="https://github.com/gabek/owncast" target="_blank">About Owncast</a> | 
						|
      </span>           | 
						|
    </footer> | 
						|
  `, | 
						|
}); | 
						|
 | 
						|
 | 
						|
Vue.component('stream-tags', { | 
						|
  props: ['tags'], | 
						|
  template: ` | 
						|
    <ul | 
						|
      class="tag-list flex" | 
						|
      v-if="this.tags.length" | 
						|
    > | 
						|
      <li class="tag rounded-sm text-gray-100 bg-gray-700"  | 
						|
        v-for="tag in this.tags" | 
						|
        v-bind:key="tag" | 
						|
      > | 
						|
        {{tag}} | 
						|
      </li> | 
						|
    </ul> | 
						|
  `, | 
						|
}); |