Need to stop calling of livewire re-render ajax - want a help

What seems to be the problem:
I have bind one parameter with my selectpicker input element. When I change the value in the select box it re-render view as like its default functionality.
Now I don’t want to call re-render ajax on change in this select box. But also want the data binding functionality.
Is there any way to prevent it.?

Steps to Reproduce:

Are you using the latest version of Livewire:
Yes

Do you have any screenshots or code examples:
No

Have you tried wire:ignore?

Yes i have tried it. And i am not using Alpine JS for this.
My issue is something like selectpicker is initiated first time on load event. But when my livewire component get re-render that selectpicker append but with previous selected value. But i want to make it default if null is passed in respective variable.

wire:ignore is not an AlpineJS directive. It prevents livewire from swapping out the component on DOM diff.

Thank you for your time @shortbrownman. I figure it out. i had use “wire:ignore” on div. That stop my element to re-initialize. Now working as expected.