MediaWiki:Common.html

Страница интерфейса MediaWiki
Версия от 18:19, 18 июля 2024; DeRecnad (обсуждение | вклад) (Новая страница: «<template> <div> <cdx-button action="destructive"> <cdx-icon :icon="cdxIconTrash" /> Delete this item </cdx-button> </div> </template> <script> import { defineComponent } from 'vue'; import { CdxButton, CdxIcon } from '@wikimedia/codex'; import { cdxIconTrash } from '@wikimedia/codex-icons'; export default defineComponent( { components: { CdxButton, CdxIcon }, data: () => ( { cdxIconTrash } ), // ... } ); </script>»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

<template>

<cdx-button action="destructive"> <cdx-icon :icon="cdxIconTrash" /> Delete this item </cdx-button>

</template>

<script> import { defineComponent } from 'vue'; import { CdxButton, CdxIcon } from '@wikimedia/codex'; import { cdxIconTrash } from '@wikimedia/codex-icons';

export default defineComponent( { components: { CdxButton, CdxIcon }, data: () => ( { cdxIconTrash } ), // ... } ); </script>