Skip to content

Instantly share code, notes, and snippets.

View goper's full-sized avatar

ALIAKSANDR OLEGOVITCH ZHALIAZOUSKI goper

  • Когнитивные технологии
  • Belarus
View GitHub Profile
@goper
goper / v-model
Last active March 22, 2024 11:33
<ChildComponent v-model="pageTitle" />
<!-- будет сокращённой версия для: -->
<ChildComponent
:modelValue="pageTitle"
@update:modelValue="pageTitle = $event"
/>
<ChildComponent
# show all plugins
rabbitmq-plugins list
# enable plugin
rabbitmq-plugins enable <plugin-name>
# enadisableble plugin
rabbitmq-plugins disable <plugin-name>