2018-08-22 20:10:44 +08:00
|
|
|
<template>
|
2018-11-09 05:03:10 +08:00
|
|
|
<div class="navigation">
|
2018-08-22 21:42:03 +08:00
|
|
|
|
2019-07-24 02:26:45 +08:00
|
|
|
<div>
|
|
|
|
<h1 class="navigation__logo">
|
|
|
|
tiptap
|
|
|
|
</h1>
|
|
|
|
<github-button
|
|
|
|
class="navigation__count"
|
2020-07-13 23:08:17 +08:00
|
|
|
href="https://github.com/ueberdosis/tiptap"
|
2019-07-24 02:26:45 +08:00
|
|
|
data-show-count="true"
|
2020-07-13 23:08:17 +08:00
|
|
|
aria-label="Star ueberdosis/tiptap on GitHub"
|
2019-07-24 02:26:45 +08:00
|
|
|
/>
|
|
|
|
</div>
|
2018-08-22 21:42:03 +08:00
|
|
|
|
2018-11-09 05:03:10 +08:00
|
|
|
<div>
|
2020-07-13 22:43:55 +08:00
|
|
|
<a class="navigation__link" href="https://tiptap.dev/docs" target="_blank">
|
2019-04-25 00:33:59 +08:00
|
|
|
Documentation
|
|
|
|
</a>
|
2020-07-13 22:44:06 +08:00
|
|
|
<a class="navigation__link" href="https://github.com/sponsors/ueberdosis" target="_blank">
|
|
|
|
Sponsor
|
|
|
|
</a>
|
2020-07-13 23:08:17 +08:00
|
|
|
<a class="navigation__github-link" href="https://github.com/ueberdosis/tiptap" target="_blank">
|
2018-11-09 05:03:10 +08:00
|
|
|
<icon class="navigation__icon" name="github" />
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-08-22 21:42:16 +08:00
|
|
|
|
2018-11-09 05:03:10 +08:00
|
|
|
</div>
|
2018-08-22 20:10:44 +08:00
|
|
|
</template>
|
|
|
|
|
2018-08-22 21:42:03 +08:00
|
|
|
<script>
|
|
|
|
import Icon from 'Components/Icon'
|
2019-07-24 02:26:45 +08:00
|
|
|
import GithubButton from 'vue-github-button'
|
2018-08-22 21:42:03 +08:00
|
|
|
|
|
|
|
export default {
|
2018-11-09 05:03:10 +08:00
|
|
|
components: {
|
|
|
|
Icon,
|
2019-07-24 02:26:45 +08:00
|
|
|
GithubButton,
|
2018-11-09 05:03:10 +08:00
|
|
|
},
|
2018-08-22 21:42:03 +08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2018-11-09 05:03:10 +08:00
|
|
|
<style lang="scss" src="./style.scss" scoped></style>
|