[Vuejs]-How to link Vue.JS page from my HTML page

0👍

Deploy your Vue.js application with following command:

npm run build

This will create the dist folder, which you can upload to your server. This process will create a .html file, which you can call from your main page.

Leave a comment