Vue.js render time optimalization

I have a problem with optimalization in vue.js. I know my thinking is not perfect but i need to optimize part of application quick.

I have app looking like Pinterest. I have 1k cards to show, every card have profile data some of them have more some of them have less. Problem is when i try to filter them i have to wait a lot of time to have them filtered. All cards are fetch by ajax all at once.

What i found is Vue.js is rerendering them every time i filter them. They are static data witch wont change and it cant be changed.

Is there a way to prevent rerendering components when they are filtered?