1.1.9 • Published 8 years ago
mueditor v1.1.9
Mueditor
A simple Vue2.x markdown editor
- fast
- simple
- lightweight
Links
Install
npm install mueditor
Quick Start
<template>
<div class="publish-box">
<Mueditor
:sync-content="syncPreview"
:default-content="defaultContent"
local-storage-name="mue"
>
</Mueditor>
<div class="publish-preview" v-html="html"></div>
</div>
</template>
<script>
import Mueditor from 'mueditor'
export default {
components: {
Mueditor
},
data: function () {
return {
defaultContent: 'Mueditor demo',
html: ''
}
},
methods: {
syncPreview: function (data) {
this.html = data.html
}
}
}
</script>
<style>
.publish-box {
width: 40rem;
margin: 0 auto;
}
.publish-preview {
font-family: monospace, monospace;
}
@media all and (max-width: 768px) {
.publish-box {
width: 100%;
}
}
</style>
1.1.9
8 years ago
1.1.8
8 years ago
1.1.7
8 years ago
1.1.6
8 years ago
1.1.5
8 years ago
1.1.4
8 years ago
1.1.3
8 years ago
1.1.2
8 years ago
1.1.1
8 years ago
1.1.0
8 years ago
1.0.9
8 years ago
1.0.8
8 years ago
1.0.7
8 years ago
1.0.6
8 years ago
1.0.5
8 years ago
1.0.4
8 years ago
1.0.3
8 years ago
1.0.2
8 years ago
1.0.1
8 years ago
1.0.0
8 years ago