How to display articles based on composed tag

Thanks to a similar topic I can do it with :

$tag       = get_queried_object();
$tag_slug  = $tag->slug;

Or with this snippet :

$current_tag =  single_term_title("", false);
tag_slug = str_replace(' ', '-', $current_tag);