I ran into a problem, the function of opening a link in the default browser of the device from the application on vue.js in cordova 5.4.1 (installed a later version to install under Android 4.0.1) does not work, so I try to call it when clicked - it’s natural for a test in a browser gives effect, and causes an error in the console This is a method for a native application.

<div onclick="navigator.app.loadUrl('http://google.com/', {openExternal : true});">Перейти на сайт</div> 

but after building through cordova build android in the application, when you click on a button, nothing happens at all, what to do in this situation? install some kind of plugin?

0