2018-08-22 20:10:44 +08:00
|
|
|
<template>
|
|
|
|
<div class="navigation">
|
2018-08-22 21:42:03 +08:00
|
|
|
|
2018-08-23 13:53:08 +08:00
|
|
|
<h1 class="navigation__logo">
|
|
|
|
tiptap <span class="navigation__beta">beta</span>
|
|
|
|
</h1>
|
2018-08-22 21:42:03 +08:00
|
|
|
|
2018-08-23 13:53:08 +08:00
|
|
|
<div>
|
|
|
|
<a class="navigation__link" href="https://github.com/heyscrumpy/tiptap/blob/master/CONTRIBUTING.md" target="_blank">
|
|
|
|
Contribute
|
|
|
|
</a>
|
|
|
|
<a class="navigation__github-link" href="https://github.com/heyscrumpy/tiptap" target="_blank">
|
|
|
|
<icon class="navigation__icon" name="github" />
|
|
|
|
</a>
|
2018-08-22 21:42:03 +08:00
|
|
|
</div>
|
2018-08-22 21:42:16 +08:00
|
|
|
|
2018-08-22 20:10:44 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-08-22 21:42:03 +08:00
|
|
|
<script>
|
|
|
|
import Icon from 'Components/Icon'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Icon,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" src="./style.scss" scoped></style>
|