mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-14 10:39:18 +08:00
47 lines
797 B
Vue
47 lines
797 B
Vue
<template>
|
|
<div class="page" spellcheck="false">
|
|
|
|
<navigation />
|
|
|
|
<hero />
|
|
|
|
<subnavigation />
|
|
|
|
<div class="page__content">
|
|
<router-view />
|
|
</div>
|
|
|
|
<div class="page__footer">
|
|
<a class="page__source-link" :href="$route.meta.githubUrl" target="_blank">
|
|
<icon name="code" />
|
|
<span>
|
|
Show Code
|
|
</span>
|
|
</a>
|
|
</div>
|
|
|
|
<ad />
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Navigation from 'Components/Navigation'
|
|
import Hero from 'Components/Hero'
|
|
import Subnavigation from 'Components/Subnavigation'
|
|
import Icon from 'Components/Icon'
|
|
import Ad from 'Components/Ad'
|
|
|
|
export default {
|
|
components: {
|
|
Navigation,
|
|
Hero,
|
|
Subnavigation,
|
|
Icon,
|
|
Ad,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" src="./style.scss"></style>
|