文章审批加保存

This commit is contained in:
clay
2022-01-08 22:44:00 +08:00
parent f0b55277b0
commit 95eb461aab
12 changed files with 360 additions and 77 deletions

View File

@@ -0,0 +1,21 @@
<template>
<div class="Editor">
<ckeditor v-model="context"></ckeditor>
<div>{{context}}</div>
</div>
</template>
<script>
export default {
name: "Editor",
data(){
return{
context:""
}
}
}
</script>
<style scoped>
</style>