Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

9 Steps Strategy to introduce Vue in existing project without loosing SEO Ranking

If you are introducing Vue in existing project where html is being generated on server side, then below process will help in not loosing current SEO score of the site. We’ll be introducing Vue progressively in the project.

  • Wrap everything from first to last html element within body tag inside a new div with id vue-app. It will look like this <body><div id="vue-app"><!-- All Those Html Elements --></div></body>

  • In your app.js or whichever is going to be your entry file for vue, instantiate Vue class and mount it to vue-app div. Something like this new Vue().$mount('#vue-app'). Make sure bundled/compiled js is loaded at the bottom of our html, preferably after #vue-app div.

  • Start with creating components which are not trivial for SEO and register them globally using Vue.component api, so that those components can be used anywhere in the project.

  • Introduce Pre-Rendering in the project using softwares like prerender.io or rendertron into the project. prerender.io provides hosted solution too. If you are planning to host it yourself, I would recommend hosting it on a separate server. This will prepare the ground for components important for SEO as prerendering would help search engines crawl SEO components.

  • Start creating one SEO component and see how it performs. After it starts performing as per expectations, create more SEO components.

    • *

REMAINING STEPS ARE OPTIONAL.


  • Now you can start looking into converting pages into SPAs

  • Once SPAs are created for all pages, introduce Server Side Rendering (SSR) in the project.

  • Once it is verified that SSR is working properly for all pages present in the project, get rid of Pre-Rendering software introduced in step 4.