mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 19:29:02 +08:00
31 lines
617 B
Vue
31 lines
617 B
Vue
<template>
|
|
<div class="navigation">
|
|
|
|
<h1 class="navigation__logo">
|
|
tiptap
|
|
</h1>
|
|
|
|
<div>
|
|
<a class="navigation__link" href="https://github.com/scrumpy/tiptap/blob/master/CONTRIBUTING.md" target="_blank">
|
|
Contribute
|
|
</a>
|
|
<a class="navigation__github-link" href="https://github.com/scrumpy/tiptap" target="_blank">
|
|
<icon class="navigation__icon" name="github" />
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
|
|
export default {
|
|
components: {
|
|
Icon,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" src="./style.scss" scoped></style>
|