[Vuejs]-NativeScript Vue.js add a button linking to a website

1👍

You should be able to use openUrl to open a website on your browser:

import { openUrl } from "tns-core-modules/utils/utils";

openUrl('your website url here');

Leave a comment