MediaWiki:Common.html

Страница интерфейса MediaWiki

<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>