no message

Former-commit-id: c7068d628c54259c552acad26b57ffa98070f0ea
Former-commit-id: b568327d2b0e2e17bbc03e2572834d27618600cc
Former-commit-id: 67f27c5a966bf109d15a933195a5e2fd78c57524
This commit is contained in:
李杨
2018-02-23 13:22:52 +08:00
parent 3ec36d209a
commit 61a03540a9
2 changed files with 18 additions and 10 deletions

View File

@@ -1,6 +1,11 @@
<template> <template>
<Container type="ghost"> <Container type="ghost">
<el-card class="dd-mb"> <el-card class="dd-mb">
<PageHeader
slot="header"
title="基本示例"
url="https://github.com/quilljs/quill">
</PageHeader>
<QuillEditor <QuillEditor
style="min-height: 200px;" style="min-height: 200px;"
v-model="value" v-model="value"
@@ -9,8 +14,8 @@
@editor-change="editorChangeHandler"> @editor-change="editorChangeHandler">
</QuillEditor> </QuillEditor>
</el-card> </el-card>
<p>输出</p>
<el-card> <el-card>
<template slot="header">输出</template>
<Highlight :code="formated"></Highlight> <Highlight :code="formated"></Highlight>
</el-card> </el-card>
</Container> </Container>

View File

@@ -1,12 +1,15 @@
<template> <template>
<Container> <Container type="ghost">
<PageHeader <el-card class="dd-mb">
slot="header" <PageHeader
title="基本示例" slot="header"
url="https://github.com/sparksuite/simplemde-markdown-editor"> title="基本示例"
</PageHeader> url="https://github.com/sparksuite/simplemde-markdown-editor">
<div style="margin-bottom: -16px;"> </PageHeader>
<SimpleMDE></SimpleMDE> <SimpleMDE style="margin-bottom: -16px;"></SimpleMDE>
</div> </el-card>
<el-card>
<template slot="header">输出</template>
</el-card>
</Container> </Container>
</template> </template>