Update multiple turbo frames with link_to

Is there a proper turbo way to change multiple turbo frames within link_to? I tried applying method: :get and data-turbo-stream=“true” to links but neither worked even though these are supposed to make it possible (I am running Rails 7.1.1).

Using UJS seems to work but it means hanging onto something that is discontinued in Rails. Likewise, using button_to and faking POST requests is far from ideal.

For the time being, I fixed the problem by nesting turbo frames and using CSS to make it look as intended but wonder if there is a simpler/cleaner way of doing this.