1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-12-28 12:10:20 +08:00

refactor: 重构主题色配置,多标签配置化处理

This commit is contained in:
张传龙
2022-04-10 23:20:28 +08:00
parent 0d240f083a
commit b3aa8147b1
11 changed files with 44 additions and 40 deletions

View File

@@ -11,7 +11,6 @@
:columns="columns"
:pagination="pagination"
:row-key="(row) => row.id"
max-height="calc(100vh - 250px)"
@update:checked-row-keys="handleCheck"
/>
</div>

View File

@@ -1,10 +1,10 @@
<template>
<div>
<div pb-20>
<div class="header">
<input v-model="post.title" type="text" placeholder="输入文章标题..." class="title" />
<n-button type="primary" style="width: 80px" :loading="btnLoading" @click="handleSavePost">保存</n-button>
</div>
<MdEditor v-model="post.content" style="height: calc(100vh - 140px)" />
<MdEditor v-model="post.content" style="height: calc(100vh - 200px)" />
</div>
</template>