0๐
I would suggest an .htaccess
(or the equivalent for other servers) and simple redirect this specific url.
Might look like this:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# WordPress
RewriteRule ^blog$ /path/to/wordpress/index.php [L]
# Vue
RewriteRule . /index.html [L]
Source:stackexchange.com