Limit Results with WP Visual Bakery Visual Composer

Solution:

Visual Composer uses the WP_Query

https://developer.wordpress.org/reference/functions/query_posts/

which you can covert to a shortcode via http_build_query and figure out what to use.

adding this to your query:

&posts_per_page=3

is the same as this in PHP:

'posts_per_page' => 3