From 6171c73a47f494599d04ea4247c17f6ab60eb314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=92=83=E7=99=BD?= <18511759309@163.com> Date: Wed, 9 Jun 2021 18:36:12 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=E9=87=8D=E6=9E=84=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/src/App.vue b/src/App.vue index 7d55ff8..57656f4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -56,6 +56,45 @@ export default { showPreview: false, fileList: [], text: "", +// text: ` +// # 标题一标题一标题一 +// ## 标题二标题二 +// 666\`行内代码\`666 +// \`\`\`js +// // 是注释呀 +// /** +// * @params x +// */ +// function fn() { +// return null; +// } +// \`\`\` +// **粗体文字** + +// _斜体文字_ + +// > 这段是引用的内容\n +// > 这段是引用的内容 +// > 这段是引用的内容 + +// [链接](url) + +// - 无序列表 +// - 无序列表 +// - 无序列表 + +// 1. 有序列表 +// 2. 有序列表 +// 3. 有序列表 + +// - [ ] 任务列表 +// - [x] 任务列表 +// - [ ] 任务列表 + +// | header | header | +// | ------ | ------ | +// | cell | cell | +// | cell | cell |`, html: "", selectionInfo: { selectorId: "", -- GitLab