L
L
LilBorsch2019-03-22 19:03:30
JavaScript
LilBorsch, 2019-03-22 19:03:30

Does it make sense to create a weblog with Vue.js?

Hello, I would like to create an online magazine on Vue.js in order to learn + I want to make a website without reloading the page. But as far as I know, such frameworks have problems with indexing in search engines. Will the vue project be indexed just as well as if I just put it on wp, for example?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
M
McBernar, 2019-03-22
@McBernar

Will not. The assurances of Google and Yandex on this matter are not true.
Do SSR.

I
inzeppelin, 2019-03-22
@inzeppelin

You can look into Server Side Rendering on Vue.

W
wizzet, 2019-03-23
@wizzzet

Nuxtjs has no problems with search engines, especially since SSR support is already built into the framework, and working on it is even faster than on pure vuejs. The only moment, when serializing a page for SSR, an object of the serialized state of the page is created in json, which slightly increases the total volume of the page. Well, another problem is that due to northern serialization on the northern side, the global objects window, document, navigator, which are often used directly in various Javascript plugins, become inaccessible in the source code. To solve this issue, you can use the built-in noSSR component, which delays the rendering of a certain piece of content until it is launched in the browser.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question