mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 21:50:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			476 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
Vue.component("more-options-tbody", {
 | 
						|
	data: function () {
 | 
						|
		return {
 | 
						|
			isVisible: false
 | 
						|
		}
 | 
						|
	},
 | 
						|
	methods: {
 | 
						|
		show: function () {
 | 
						|
			this.isVisible = !this.isVisible
 | 
						|
			this.$emit("change", this.isVisible)
 | 
						|
		}
 | 
						|
	},
 | 
						|
	template: `<tbody>
 | 
						|
	<tr>
 | 
						|
		<td colspan="2"><a href="" @click.prevent="show()"><span v-if="!isVisible">更多选项</span><span v-if="isVisible">收起选项</span><i class="icon angle" :class="{down:!isVisible, up:isVisible}"></i></a></td>
 | 
						|
	</tr>
 | 
						|
</tbody>`
 | 
						|
}) |