refactor(editor): Standardize components sections order (no-changelog) (#10540)

This commit is contained in:
Ricardo Espinoza
2024-08-24 09:24:08 -04:00
committed by GitHub
parent 4d48f903af
commit 609bc4d97d
215 changed files with 10387 additions and 10376 deletions

View File

@@ -1,21 +1,3 @@
<template>
<ElDrawer
:direction="direction"
:model-value="uiStore.modalsById[name].open"
:size="width"
:before-close="close"
:modal="modal"
:wrapper-closable="wrapperClosable"
>
<template #header>
<slot name="header" />
</template>
<span @keydown.stop>
<slot name="content" />
</span>
</ElDrawer>
</template>
<script lang="ts">
import { useUIStore } from '@/stores/ui.store';
import { mapStores } from 'pinia';
@@ -101,6 +83,24 @@ export default defineComponent({
});
</script>
<template>
<ElDrawer
:direction="direction"
:model-value="uiStore.modalsById[name].open"
:size="width"
:before-close="close"
:modal="modal"
:wrapper-closable="wrapperClosable"
>
<template #header>
<slot name="header" />
</template>
<span @keydown.stop>
<slot name="content" />
</span>
</ElDrawer>
</template>
<style lang="scss">
.el-drawer__header {
margin: 0;