[Vuejs]-How to integrate a landing page with a Vue SPA?

1👍

Did some search and didn’t find exact solution to your issue, however it seems that this is doable. I have some concerns regarding the head part of the page, but this is a way to start:

  1. Create new Vue component that will include all the HTML code (body only) that you need + install (with npm) and import all needed js files, including jQuery, in that component.
  2. Make sure, that you configure this component as lazy loaded in vue-router – so all your html and scripts will be separated from the app.

From there Vue should do the job – you will get your page where needed and other routes will be inside the app.

Leave a comment