Просмотр исходного кода

fix(getting-started): Switch Vue 2 and Vue 3 configuration headings (#55156)

Swap out headings for the Vue getting started page. We
want to show Vue 3 first and Vue 2 further below.
Lukas Stracke 1 год назад
Родитель
Сommit
68e57963e0
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      static/app/gettingStartedDocs/javascript/vue.tsx

+ 2 - 2
static/app/gettingStartedDocs/javascript/vue.tsx

@@ -68,7 +68,7 @@ npm install --save @sentry/vue
     ),
     ),
     configurations: [
     configurations: [
       {
       {
-        description: <h5>V2</h5>,
+        description: <h5>Vue 3</h5>,
         language: 'javascript',
         language: 'javascript',
         code: `
         code: `
         import { createApp } from "vue";
         import { createApp } from "vue";
@@ -92,7 +92,7 @@ npm install --save @sentry/vue
         `,
         `,
       },
       },
       {
       {
-        description: <h5>V3</h5>,
+        description: <h5>Vue 2</h5>,
         language: 'javascript',
         language: 'javascript',
         code: `
         code: `
         import Vue from "vue";
         import Vue from "vue";