├── README.md ├── nuxt.jpeg ├── search.vue └── yandbtm.vue /README.md: -------------------------------------------------------------------------------- 1 | # Nuxt.js and search engines. 2 | 3 | # Solving problems with SEO for Google and Yandex 4 | 5 | ![nuxt.jpeg](./nuxt.jpeg) 6 | 7 | These are pages for search robots Google and Yandex, which help to eliminate errors in the issue and lower the site's ranking when working on Vuejs + Nuxtjs 8 | 9 | I tried to make it as simple as possible, I think there will be no difficulties with this. 10 | 11 | You can use it for your sites. Hope this helps you. 12 | 13 | Pages need to be placed in pages for Nuxt to route them, but you already know that. 14 | 15 | This solution was chosen after researching and analyzing the caching of sites by search robots. You can read more in my profile: https://www.linkedin.com/in/alexander-panov-04071b147 16 | 17 | # Nuxt.js и поисковики. 18 | 19 | # Решение проблем с СЕО для Google и Yandex 20 | 21 | Это страницы для поисковых роботов Google и Yandex , которые помогают исключить ошибки в выдаче и понижении рейтинга сайта при работе на Vuejs + Nuxtjs 22 | 23 | Постарался максимально просто сделать, думаю сложностей с этим не возникнет. 24 | 25 | Можете использовать для ваших сайтов. Надеюсь вам это поможет. 26 | 27 | Страницы нужно поместить в pages, чтобы Nuxt создал для них роутинг, но это вы и так знаете. 28 | 29 | Именно такое решение выбрано после исследования и анализа кеширования сайтов поисковыми роботами. Подробнее можно прочитать у меня в профиле: https://www.linkedin.com/in/alexander-panov-04071b147 -------------------------------------------------------------------------------- /nuxt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abyss-soft/NuxtAndSEOforSearchEngines/0b37a38593bf9ec81a86c577a99f28eac737ff22/nuxt.jpeg -------------------------------------------------------------------------------- /search.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 27 | 28 | 40 | -------------------------------------------------------------------------------- /yandbtm.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 29 | 30 | 42 | --------------------------------------------------------------------------------