mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-04-30 22:29:01 +08:00
58 lines
1.1 KiB
Vue
58 lines
1.1 KiB
Vue
<template>
|
|
<div p-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 - 210px)" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import MdEditor from 'md-editor-v3'
|
|
import 'md-editor-v3/lib/style.css'
|
|
|
|
const router = useRouter()
|
|
|
|
// refs
|
|
let post = ref({})
|
|
let btnLoading = ref(false)
|
|
|
|
function handleSavePost(e) {
|
|
btnLoading.value = true
|
|
$message.loading('正在保存...')
|
|
setTimeout(() => {
|
|
$message.success('保存成功')
|
|
btnLoading.value = false
|
|
router.push('/example/table/post')
|
|
}, 2000)
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.md-preview {
|
|
ul,
|
|
ol {
|
|
list-style: revert;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss" scoped>
|
|
.header {
|
|
background-color: #fff;
|
|
height: 60px;
|
|
padding: 0 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
.title {
|
|
flex: 1;
|
|
padding: 15px 0;
|
|
margin-right: 20px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: var(--primaryColor);
|
|
}
|
|
}
|
|
</style>
|