docs: add BannerMessage component

This commit is contained in:
Philipp Kühn
2021-04-16 19:08:26 +02:00
parent 208d721718
commit 0c1b77132b
2 changed files with 53 additions and 0 deletions

View File

@@ -1,6 +1,14 @@
<template>
<div class="app">
<div class="app__navigation">
<banner-message
to="https://www.tiptap.dev/"
v-if="$route.name === 'home'"
color="black"
>
Youre browsing the documentation for v2.x. Click here for v1.x documentation
</banner-message>
<div class="app__top-bar">
<g-link class="app__logo" to="/">
<img src="~@/assets/images/logo.svg">
@@ -124,6 +132,7 @@ query {
import linkGroups from '@/links.yaml'
import Icon from '@/components/Icon'
import PageFooter from '@/components/PageFooter'
import BannerMessage from '@/components/BannerMessage'
// import GithubButton from 'vue-github-button'
export default {
@@ -137,6 +146,7 @@ export default {
components: {
Icon,
PageFooter,
BannerMessage,
// GithubButton,
},