Skip to content

Commit

Permalink
docs(ru): update translations (#4323)
Browse files Browse the repository at this point in the history
* Update ru/reference/site-config.md

* Update ru/guide/using-vue.md
  • Loading branch information
dragomano authored Oct 30, 2024
1 parent 67b7d5d commit c61775a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions docs/ru/guide/using-vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,3 +251,37 @@ import ComponentInHeader from '../../components/ComponentInHeader.vue'
padding: 0 20px;
}
</style>


## Поддержка VS Code IntelliSense

<!-- Based on https://github.com/vuejs/language-tools/pull/4321 -->

Vue предоставляет поддержку IntelliSense из коробки через [официальный плагин Vue для VS Code](https://marketplace.visualstudio.com/items?itemName=Vue.volar). Однако, чтобы включить её для файлов `.md`, вам нужно внести некоторые изменения в файлы конфигурации.

1. Добавьте шаблон `.md` в параметры `include` и `vueCompilerOptions.vitePressExtensions` в файле tsconfig/jsconfig:

::: code-group
```json [tsconfig.json]
{
"include": [
"docs/**/*.ts",
"docs/**/*.vue",
"docs/**/*.md",
],
"vueCompilerOptions": {
"vitePressExtensions": [".md"],
},
}
```
:::

2. Добавьте `markdown` в параметр `vue.server.includeLanguages` в настройках VS Code:

::: code-group
```json [.vscode/settings.json]
{
"vue.server.includeLanguages": ["vue", "markdown"]
}
```
:::
2 changes: 1 addition & 1 deletion docs/ru/reference/site-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export default {

### srcExclude {#srcexclude}

- Тип: `string`
- Тип: `string[]`
- По умолчанию: `undefined`

[Шаблон](https://github.com/mrmlnc/fast-glob#pattern-syntax) для поиска файлов, которые должны быть исключены из исходного содержимого.
Expand Down

0 comments on commit c61775a

Please sign in to comment.