mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 07:39:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			538 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			538 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<script>
 | 
						|
    let app = new Vue({
 | 
						|
        el: "#app",
 | 
						|
        data: {
 | 
						|
            "modal_hostname": '',
 | 
						|
            "modal_id": '',
 | 
						|
            "delete_form_action": '',
 | 
						|
            showModal: false
 | 
						|
        },
 | 
						|
        methods: {
 | 
						|
            modalForm(event) {
 | 
						|
                this.showModal = true;
 | 
						|
                this.modal_hostname = event.target.id.replace('btn-', '');
 | 
						|
                this.modal_id = event.target.title;
 | 
						|
                this.delete_form_action = '{{$uri}}/' + this.modal_id;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    });
 | 
						|
</script>
 |