From d16a220255354da0eb1174f7acd9abcada55f452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Wed, 24 Jul 2019 10:29:51 +0200 Subject: [PATCH] add trailing paragraph example --- .../Routes/TrailingParagraph/index.vue | 210 ++++++++++++++++++ examples/Components/Subnavigation/index.vue | 3 + examples/main.js | 7 + 3 files changed, 220 insertions(+) create mode 100644 examples/Components/Routes/TrailingParagraph/index.vue diff --git a/examples/Components/Routes/TrailingParagraph/index.vue b/examples/Components/Routes/TrailingParagraph/index.vue new file mode 100644 index 000000000..87166422c --- /dev/null +++ b/examples/Components/Routes/TrailingParagraph/index.vue @@ -0,0 +1,210 @@ + + + diff --git a/examples/Components/Subnavigation/index.vue b/examples/Components/Subnavigation/index.vue index cf93c1c05..35a023e96 100644 --- a/examples/Components/Subnavigation/index.vue +++ b/examples/Components/Subnavigation/index.vue @@ -54,6 +54,9 @@ Title + + Trailing Paragraph + Export HTML or JSON diff --git a/examples/main.js b/examples/main.js index 747c8372c..3702cad63 100644 --- a/examples/main.js +++ b/examples/main.js @@ -137,6 +137,13 @@ const routes = [ githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/Title', }, }, + { + path: '/trailing-paragraph', + component: () => import('Components/Routes/TrailingParagraph'), + meta: { + githubUrl: 'https://github.com/scrumpy/tiptap/tree/master/examples/Components/Routes/TrailingParagraph', + }, + }, { path: '/export', component: () => import('Components/Routes/Export'),