From 58f3e59795c58db7682f66400862fda8efe03379 Mon Sep 17 00:00:00 2001 From: hacker01hacker Date: Wed, 26 Feb 2025 02:05:42 +0500 Subject: [PATCH 1/9] Update README.md --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d030d8e337..5ea4982c62 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,30 @@ # vuejs.org -## Contributing +## Үлес қосу -This site is built with [VitePress](https://github.com/vuejs/vitepress) and depends on [@vue/theme](https://github.com/vuejs/vue-theme). Site content is written in Markdown format located in `src`. For simple edits, you can directly edit the file on GitHub and generate a Pull Request. +Бұл сайт [VitePress](https://github.com/vuejs/vitepress) арқылы жасалған және [@vue/theme](https://github.com/vuejs/vue-theme) - ге тәуелді. Сайт мазмұны `src` ішінде орналасқан Markdown форматында жазылған. Қарапайым өзгерістер енгізу үшін, сіз GitHub-та файлды тікелей өзгертіп, Pull Request жасай аласыз. -For local development, [pnpm](https://pnpm.io/) is preferred as package manager: +Жергілікті даму үшін [pnpm](https://pnpm.io/) пакет менеджері ұсынылады: ```bash pnpm i pnpm run dev ``` -This project requires Node.js to be `v18` or higher. And it is recommended to enable corepack: +Бұл жоба үшін Node.js нұсқасы `v18` немесе одан жоғары болуы керек. Сондай-ақ, corepack-ты қосу ұсынылады: ```bash corepack enable ``` -## Working on the content +## Мазмұнмен жұмыс -- See VitePress docs on supported [Markdown Extensions](https://vitepress.dev/guide/markdown) and the ability to [use Vue syntax inside markdown](https://vitepress.dev/guide/using-vue). +- VitePress құжаттамасынан қолдауды [Markdown Кеңейтімдері](https://vitepress.dev/guide/markdown) және [markdown ішіндегі Vue синтаксисін қолдану](https://vitepress.dev/guide/using-vue) мүмкіндігі туралы ақпаратты қараңыз. - See the [Writing Guide](https://github.com/vuejs/docs/blob/main/.github/contributing/writing-guide.md) for our rules and recommendations on writing and maintaining documentation content. -## Working on the theme +- Құжаттаманы жазу және сақтау ережелері мен ұсыныстары үшін [Жазу Нұсқаулығын](https://github.com/vuejs/docs/blob/main/.github/contributing/writing-guide.md) қараңыз. -If changes need to made for the theme, check out the [instructions for developing the theme alongside the docs](https://github.com/vuejs/vue-theme#developing-with-real-content). +## Тақырыппен жұмыс + +Егер тақырыпқа өзгерістер енгізу қажет болса, [құжаттаманы әзірлеумен қатар тақырыпты дамыту](https://github.com/vuejs/vue-theme#developing-with-real-content) нұсқаулығын қараңыз. \ No newline at end of file From 86b9292a495dc1f95d58109da3c896e526ee711c Mon Sep 17 00:00:00 2001 From: Daryn Bauyrzhanuly Date: Wed, 26 Feb 2025 14:04:47 +0500 Subject: [PATCH 2/9] Update description.md --- src/tutorial/src/step-14/description.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/tutorial/src/step-14/description.md b/src/tutorial/src/step-14/description.md index 6e5fb4fc36..37aece8863 100644 --- a/src/tutorial/src/step-14/description.md +++ b/src/tutorial/src/step-14/description.md @@ -1,12 +1,12 @@ -# Slots {#slots} +# Slot-тар {#slots} -In addition to passing data via props, the parent component can also pass down template fragments to the child via **slots**: +Деректерді проптар арқылы жіберумен қатар, ата-ана компоненті баласына **slot** арқылы шаблон фрагменттерін жіберуге де болады:
```vue-html - This is some slot content! + Бұл слоттың мазмұны! ``` @@ -15,18 +15,18 @@ In addition to passing data via props, the parent component can also pass down t ```vue-html - This is some slot content! + Бұл слоттың мазмұны! ```
-In the child component, it can render the slot content from the parent using the `` element as outlet: +Баланың компонентінде, ата-анадан келген слоттың мазмұнын `` элементі арқылы көрсетуге болады:
```vue-html - + ``` @@ -34,16 +34,16 @@ In the child component, it can render the slot content from the parent using the
```vue-html - + ```
-Content inside the `` outlet will be treated as "fallback" content: it will be displayed if the parent did not pass down any slot content: + шыққан жеріндегі мазмұн «резервтік» мазмұн ретінде қарастырылады: егер ата-ана ешқандай слот мазмұнын бермесе, ол көрсетіледі. ```vue-html -Fallback content +Резервтік мазмұн ``` -Currently we are not passing any slot content to ``, so you should see the fallback content. Let's provide some slot content to the child while making use of the parent's `msg` state. +Қазіргі уақытта біз -ке ешқандай слот мазмұнын жібермей отырмыз, сондықтан сіз резервтік мазмұнды көруіңіз керек. Енді ата-ананың msg күйін пайдаланып, баласына слот мазмұнын жіберейік. \ No newline at end of file From 7d5d5c73ed96ef323ac46368976b28108a371baa Mon Sep 17 00:00:00 2001 From: Daryn Bauyrzhanuly Date: Wed, 26 Feb 2025 14:04:59 +0500 Subject: [PATCH 3/9] Update index.md --- src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.md b/src/index.md index 1f6b4783bf..95c60d9b6f 100644 --- a/src/index.md +++ b/src/index.md @@ -1,6 +1,6 @@ --- page: true -title: Vue.js - The Progressive JavaScript Framework +title: Vue.js - Дамыған JavaScript фреймворкы ---