Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update javascript.md #197

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/ru/docs/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,41 @@ class AppServiceProvider extends ServiceProvider
</span>
</div>
```


## Обертка Vue.js внутри Stimulus

Многие разработчики любят простоту и мощность Vue.js для построения интерактивных и отзывчивых frontend приложений. В этой секции, мы рассмотрим как легки обернуть и интегрировать Vue компонент внутри Stimulus контроллера.

Создайте файл Stimulus контроллера, для примера `hello_controller.js`:

```js
import {createApp} from 'vue';

export default class extends window.Controller {
connect() {
this.app = createApp({
data() {
return {
message: 'Hello, Vue.js!'
}
}
});

this.app.mount(this.element);
}

disconnect() {
this.app.unmount();
}
}

```
Укажите ваш контроллер во view, а конкретно в blade шаблоне:

```html
<div data-controller="hello">
@{{ message }}
</div>
```
Теперь, когда вы перезагрузите страницу, экземпляр Vue.js будет создан и мы увидим наше сообщение `Hello, Vue.js!' на экране и внутри HTML элемента. Далее вы можете использывать Vue.js как обычно в рамках контроллера Stimulus.