How to implement custom Handle? #250
-
| I want to replace the solid point with some icon. Is there any way to do that? | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            bcakmakoglu
          
      
      
        Jul 28, 2022 
      
    
    Replies: 1 comment
-
| The Handle component has a default slot you can fill with anything you like. <Handle>
	<CustomHandleContent />
</Handle>Just overwrite the handle styles if necessary and pass your component inside and style it. .vue-flow__handle {
	height: unset;
	width: unset; /* or whatever you need for your css, this is just an example */
} | 
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
      Answer selected by
        bcakmakoglu
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
The Handle component has a default slot you can fill with anything you like.
Just overwrite the handle styles if necessary and pass your component inside and style it.